Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pycalibration
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
calibration
pycalibration
Commits
f35c88cc
Commit
f35c88cc
authored
5 years ago
by
Karim Ahmed
Browse files
Options
Downloads
Patches
Plain Diff
add req arguments parser group
parent
ed0d3539
No related branches found
No related tags found
1 merge request
!145
Provide a CLI option for changing configurations
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
webservice/update_config.py
+6
-5
6 additions, 5 deletions
webservice/update_config.py
webservice/webservice.py
+1
-0
1 addition, 0 deletions
webservice/webservice.py
with
7 additions
and
5 deletions
webservice/update_config.py
+
6
−
5
View file @
f35c88cc
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
webservice/webservice.py
+
1
−
0
View file @
f35c88cc
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment