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:
360
360
- develop
361
361
- TOP-1390
362
362
- PM-191-2
363
- - pm-199
363
+ - pm-606
364
364
# This is alternate dev env for parallel testing
365
365
# Deprecate this workflow due to beta env shutdown
366
366
# https://topcoder.atlassian.net/browse/CORE-251
Original file line number Diff line number Diff line change @@ -246,7 +246,9 @@ class Service {
246
246
url += this . private . preview ? '/preview' : '/published' ;
247
247
url += '/entries' ;
248
248
if ( query ) url += `?${ qs . stringify ( query ) } ` ;
249
- const res = await fetch ( url ) ;
249
+ const res = await fetch ( url , {
250
+ credentials : 'omit' ,
251
+ } ) ;
250
252
if ( ! res . ok ) {
251
253
const error = new Error ( 'Failed to get entries.' ) ;
252
254
logger . error ( error ) ;
You can’t perform that action at this time.
0 commit comments