Skip to content
Snippets Groups Projects
Commit f35c88cc authored by Karim Ahmed's avatar Karim Ahmed
Browse files

add req arguments parser group

parent ed0d3539
No related branches found
No related tags found
1 merge request!145Provide a CLI option for changing configurations
...@@ -15,14 +15,15 @@ available_options = { ...@@ -15,14 +15,15 @@ available_options = {
parser = argparse.ArgumentParser( parser = argparse.ArgumentParser(
description='Request update of configuration') description='Request update of configuration')
parser.add_argument('--detector', type=str, choices=['AGIPD']) required_args = parser.add_argument_group('required arguments')
parser.add_argument('--task', type=str, choices=['correct', 'dark']) required_args.add_argument('--detector', type=str, choices=['AGIPD'])
parser.add_argument('--proposal', type=str, required_args.add_argument('--task', type=str, choices=['correct', 'dark'])
required_args.add_argument('--proposal', type=str,
help='The proposal number, without leading p, but with leading zeros') # noqa help='The proposal number, without leading p, but with leading zeros') # noqa
parser.add_argument('--instrument', type=str, required_args.add_argument('--instrument', type=str,
choices=["SPB", "MID", "FXE", "SCS", "SQS", "HED", choices=["SPB", "MID", "FXE", "SCS", "SQS", "HED",
"DETLAB"], help='The instrument') # noqa "DETLAB"], help='The instrument') # noqa
parser.add_argument('--cycle', type=str, help='The facility cycle') required_args.add_argument('--cycle', type=str, help='The facility cycle')
parser.add_argument('--apply', action='store_true') parser.add_argument('--apply', action='store_true')
# remove help calls as they will cause the argument parser to exit # remove help calls as they will cause the argument parser to exit
......
...@@ -455,6 +455,7 @@ async def server_runner(config, mode): ...@@ -455,6 +455,7 @@ async def server_runner(config, mode):
req_res = None req_res = None
if action in ['update_conf']: if action in ['update_conf']:
updated_config = None
try: try:
sase, instrument, cycle, proposal, config_yaml, apply = payload # noqa sase, instrument, cycle, proposal, config_yaml, apply = payload # noqa
updated_config = json.loads(config_yaml) updated_config = json.loads(config_yaml)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment