fix for gotthard to work

This commit is contained in:
2025-05-07 14:06:30 +02:00
parent f5bf509525
commit 5f6dea2d6d
2 changed files with 3 additions and 0 deletions

View File

@ -140,6 +140,8 @@ def startDetectorVirtualServer(name :str, num_mods, fp):
for i in range(num_mods):
port_no = SERVER_START_PORTNO + (i * 2)
cmd = [name + 'DetectorServer_virtual', '-p', str(port_no)]
if name == 'gotthard':
cmd += ['-m', '1']
startProcessInBackground(cmd, fp)
match name:
case 'jungfrau':