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 @@ -823,7 +823,7 @@ qx.Class.define("osparc.data.model.Node", {
823
823
if ( servicePath ) {
824
824
const entryPoint = entryPointD ? ( "/" + entryPointD ) : "/" ;
825
825
const srvUrl = servicePath + entryPoint ;
826
- this . __wait_for_service_ready ( srvUrl ) ;
826
+ this . __waitForServiceReady ( srvUrl ) ;
827
827
}
828
828
break ;
829
829
}
@@ -884,7 +884,7 @@ qx.Class.define("osparc.data.model.Node", {
884
884
885
885
this . __nodeState ( ) ;
886
886
} ,
887
- __wait_for_service_ready : function ( srvUrl ) {
887
+ __waitForServiceReady : function ( srvUrl ) {
888
888
// ping for some time until it is really ready
889
889
const pingRequest = new qx . io . request . Xhr ( srvUrl ) ;
890
890
pingRequest . addListenerOnce ( "success" , function ( e ) {
@@ -895,7 +895,7 @@ qx.Class.define("osparc.data.model.Node", {
895
895
const error = e . getTarget ( ) . getResponse ( ) ;
896
896
console . log ( "service not ready yet, waiting... " + error ) ;
897
897
const interval = 1000 ;
898
- qx . event . Timer . once ( ( ) => this . __wait_for_service_ready ( srvUrl ) , this , interval ) ;
898
+ qx . event . Timer . once ( ( ) => this . __waitForServiceReady ( srvUrl ) , this , interval ) ;
899
899
} ) ;
900
900
pingRequest . send ( ) ;
901
901
} ,
You can’t perform that action at this time.
0 commit comments