diff --git a/webservice/update_config.py b/webservice/update_config.py index 77f6ffe25a45e6fac7a69221c240b8e334182e96..33fdc13479039cb0c71c808db76429c60f664119 100644 --- a/webservice/update_config.py +++ b/webservice/update_config.py @@ -10,7 +10,8 @@ available_options = { "blc-noise": bool, "dont-zero-nans": bool, "dont-zero-orange": bool, - "max-pulses": int}, + "max-pulses": str, + "calfile": str}, } parser = argparse.ArgumentParser( @@ -25,7 +26,6 @@ required_args.add_argument('--instrument', type=str, "DETLAB"], help='The instrument') # noqa required_args.add_argument('--cycle', type=str, help='The facility cycle') parser.add_argument('--apply', action='store_true') - # remove help calls as they will cause the argument parser to exit add_help = False if "-h" in sys.argv: @@ -35,6 +35,14 @@ if "--help" in sys.argv: sys.argv.remove("--help") add_help = True +for det, val in available_options.items(): + bool_keys = [] + for k, v in val.items(): + if v == bool: + bool_keys.append(k) + for b in bool_keys: + available_options[det]['no-{}'.format(b)] = bool + known, remaining = parser.parse_known_args() args = vars(known) detector = args["detector"] @@ -61,6 +69,8 @@ new_conf = {task: {instrument: {detector: {}}}} for key, value in args.items(): key = key.replace("_", "-") if key in available_options[detector] and value is not None: + if 'no-' in key and isinstance(value, bool): + new_conf[task][instrument][detector][key.replace('no-','')] = False new_conf[task][instrument][detector][key] = value pyaml = yaml.dump(new_conf, default_flow_style=False) @@ -76,7 +86,7 @@ print(f"Sending the following update: \n {pyaml}") print("-" * 80) con = zmq.Context() socket = con.socket(zmq.REQ) -con = socket.connect("tcp://max-exfl016:5555") +con = socket.connect("tcp://max-exfl001:5555") msg = "','".join(["update_conf", "SASEX", args["instrument"], args["cycle"], args["proposal"], json.dumps(new_conf), str(args["apply"])]) socket.send("['{}']".format(msg).encode()) diff --git a/webservice/webservice.py b/webservice/webservice.py index 51e60a32a64258b696d368a733988ce1ff13e097..76597931f7f339a93362ccd9af2578aecc0ded0b 100644 --- a/webservice/webservice.py +++ b/webservice/webservice.py @@ -633,7 +633,11 @@ async def server_runner(config, mode): for key, value in dconfig.items(): if not isinstance(value, bool): - cmd += ["--{}".format(key), str(value)] + if " " in str(value): + cmd += ["--{}".format(key)] + cmd += [str(v) for v in value.split(" ")] + else: + cmd += ["--{}".format(key), str(value)] else: cmd += ["--{}".format(key)] ret = await run_correction(job_db, cmd, mode, proposal, @@ -683,9 +687,14 @@ async def server_runner(config, mode): detector, "CORRECT"] for key, value in dconfig.items(): if not isinstance(value, bool): - cmd += ["--{}".format(key), str(value)] + if " " in str(value): + cmd += ["--{}".format(key)] + cmd += [str(v) for v in value.split(" ")] + else: + cmd += ["--{}".format(key), str(value)] else: - cmd += ["--{}".format(key)] + if value: + cmd += ["--{}".format(key)] if priority: cmd += ["--priority", str(priority)] ret = await run_correction(job_db, cmd, mode, proposal,