File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
services/static-webserver/client/source/class/osparc Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -363,7 +363,7 @@ qx.Class.define("osparc.data.Resources", {
363363 } ,
364364 }
365365 } ,
366- "runs " : {
366+ "runsOld " : {
367367 useCache : false , // handled in osparc.store.Jobs
368368 endpoints : {
369369 getPageLatest : {
@@ -376,7 +376,7 @@ qx.Class.define("osparc.data.Resources", {
376376 } ,
377377 }
378378 } ,
379- "subRuns " : {
379+ "subRunsOld " : {
380380 useCache : false , // handled in osparc.store.Jobs
381381 endpoints : {
382382 getPageLatest : {
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ qx.Class.define("osparc.store.Jobs", {
5656 const options = {
5757 resolveWResponse : true
5858 } ;
59- return osparc . data . Resources . fetch ( "runs " , "getPageLatest" , params , options )
59+ return osparc . data . Resources . fetch ( "runsOld " , "getPageLatest" , params , options )
6060 . then ( jobsResp => {
6161 const jobsActive = [ ] ;
6262 if ( "data" in jobsResp ) {
@@ -95,7 +95,7 @@ qx.Class.define("osparc.store.Jobs", {
9595 const options = {
9696 resolveWResponse : true
9797 } ;
98- return osparc . data . Resources . fetch ( "runs " , "getPageHistory" , params , options )
98+ return osparc . data . Resources . fetch ( "runsOld " , "getPageHistory" , params , options )
9999 . then ( jobsResp => {
100100 if ( resolveWResponse ) {
101101 return jobsResp ;
@@ -126,7 +126,7 @@ qx.Class.define("osparc.store.Jobs", {
126126 includeChildren : false ,
127127 }
128128 } ;
129- return osparc . data . Resources . getInstance ( ) . getAllPages ( "subRuns " , params , "getPageLatest" )
129+ return osparc . data . Resources . getInstance ( ) . getAllPages ( "subRunsOld " , params , "getPageLatest" )
130130 . then ( subJobsData => {
131131 const subJobs = [ ] ;
132132 subJobsData . forEach ( subJobData => {
You can’t perform that action at this time.
0 commit comments