File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -360,7 +360,7 @@ workflows:
360360 - develop
361361 - TOP-1390
362362 - PM-191-2
363- - pm-199
363+ - pm-606
364364 # This is alternate dev env for parallel testing
365365 # Deprecate this workflow due to beta env shutdown
366366 # https://topcoder.atlassian.net/browse/CORE-251
Original file line number Diff line number Diff line change @@ -246,7 +246,9 @@ class Service {
246246 url += this . private . preview ? '/preview' : '/published' ;
247247 url += '/entries' ;
248248 if ( query ) url += `?${ qs . stringify ( query ) } ` ;
249- const res = await fetch ( url ) ;
249+ const res = await fetch ( url , {
250+ credentials : 'omit' ,
251+ } ) ;
250252 if ( ! res . ok ) {
251253 const error = new Error ( 'Failed to get entries.' ) ;
252254 logger . error ( error ) ;
You can’t perform that action at this time.
0 commit comments