File tree 1 file changed +3
-3
lines changed
services/web/client/source/class/osparc/data/model
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -954,7 +954,7 @@ qx.Class.define("osparc.data.model.Node", {
954
954
if ( servicePath ) {
955
955
const entryPoint = entryPointD ? ( "/" + entryPointD ) : "/" ;
956
956
const srvUrl = servicePath + entryPoint ;
957
- this . __wait_for_service_ready ( srvUrl ) ;
957
+ this . __waitForServiceReady ( srvUrl ) ;
958
958
}
959
959
break ;
960
960
}
@@ -1019,7 +1019,7 @@ qx.Class.define("osparc.data.model.Node", {
1019
1019
1020
1020
this . __nodeState ( ) ;
1021
1021
} ,
1022
- __wait_for_service_ready : function ( srvUrl ) {
1022
+ __waitForServiceReady : function ( srvUrl ) {
1023
1023
// ping for some time until it is really ready
1024
1024
const pingRequest = new qx . io . request . Xhr ( srvUrl ) ;
1025
1025
pingRequest . addListenerOnce ( "success" , function ( e ) {
@@ -1030,7 +1030,7 @@ qx.Class.define("osparc.data.model.Node", {
1030
1030
const error = e . getTarget ( ) . getResponse ( ) ;
1031
1031
console . log ( "service not ready yet, waiting... " + error ) ;
1032
1032
const interval = 1000 ;
1033
- qx . event . Timer . once ( ( ) => this . __wait_for_service_ready ( srvUrl ) , this , interval ) ;
1033
+ qx . event . Timer . once ( ( ) => this . __waitForServiceReady ( srvUrl ) , this , interval ) ;
1034
1034
} ) ;
1035
1035
pingRequest . send ( ) ;
1036
1036
} ,
You can’t perform that action at this time.
0 commit comments