Salome HOME
increase number of allowed containers parallel launchs
authorCédric Aguerre <cedric.aguerre@edf.fr>
Mon, 10 Oct 2016 09:15:25 +0000 (11:15 +0200)
committerCédric Aguerre <cedric.aguerre@edf.fr>
Mon, 10 Oct 2016 09:15:38 +0000 (11:15 +0200)
bin/ORBConfigFile.py

index 9fbe3b8e2aac730127099b5599bd5c6fd67ed1af..19a9647f44e57417b2c575eca00f15d47ed6c951 100644 (file)
@@ -63,7 +63,7 @@ def writeORBConfigFile(path, host, port, kwargs={}):
   orbdata.append("%sInitRef = NameService=corbaname::%s:%s"%(prefix,host,port))
   orbdata.append("%sgiopMaxMsgSize = %s # 2 GBytes"%(prefix,GIOP_MaxMsgSize))
   orbdata.append("%straceLevel = 0 # critical errors only"%(prefix))
-  orbdata.append("%smaxGIOPConnectionPerServer = 50 # to allow containers parallel launch"%(prefix))
+  orbdata.append("%smaxGIOPConnectionPerServer = 500 # to allow containers parallel launch"%(prefix))
   orbdata.append("")
 
   with open(omniorb_config, "w") as f: