]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
PR: Bug PAL EDF 2090
authorprascle <prascle>
Thu, 8 Mar 2012 17:14:34 +0000 (17:14 +0000)
committerprascle <prascle>
Thu, 8 Mar 2012 17:14:34 +0000 (17:14 +0000)
sometimes, on cluster systems heavily loaded, the timeout on connection to Naming Service in initNS() is too short and SALOME launch aborts. 1s --> 10s

bin/orbmodule.py

index a56a36c1f20aafd52f027e47f7f72fcda7efb758..52e1b5ef5c9d82517bbceec8c666751e22f9756c 100755 (executable)
@@ -71,7 +71,7 @@ class client:
       print "Searching Naming Service ",
       ncount=0
       delta=0.1
-      while(ncount < 10):
+      while(ncount < 100):
           ncount += 1
           try:
               obj = self.orb.resolve_initial_references("NameService")