Salome HOME
Increase ORB parameter maxGIOPConnectionPerServer to 50
[modules/kernel.git] / bin / ORBConfigFile.py
index a80c723b669eb957e69f63d888a7020969ee7fec..02bdf59a4ba57b199d6c0ec5293b336377b392f8 100644 (file)
@@ -46,6 +46,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("")
 
   f = open(omniorb_config, "w")