Skip to content
Snippets Groups Projects
Commit eeebb31e authored by Laurent Mercadier's avatar Laurent Mercadier
Browse files

Merge branch 'fix-run-values' into 'master'

Manage exception in load_run_values()

See merge request !232
parents 1d83790b a2dd55e4
No related branches found
No related tags found
1 merge request!232Manage exception in load_run_values()
...@@ -24,7 +24,7 @@ unreleased ...@@ -24,7 +24,7 @@ unreleased
- Mnemonics for XRD devices :mr:`208` - Mnemonics for XRD devices :mr:`208`
- Add function to align OL to FEL pulse Id :mr:`218` - Add function to align OL to FEL pulse Id :mr:`218`
- Add reflectivity routine :mr:`218` - Add reflectivity routine :mr:`218`
- Possibility to extract run values of mnemonics :mr:`220` - Possibility to extract run values of mnemonics :mr:`220`, :mr:`232`
- Add get_undulator_config function :mr:`225` - Add get_undulator_config function :mr:`225`
1.6.0 1.6.0
......
...@@ -458,9 +458,13 @@ def load_run_values(prop_or_run, runNB=None, which='mnemonics'): ...@@ -458,9 +458,13 @@ def load_run_values(prop_or_run, runNB=None, which='mnemonics'):
run_values = {} run_values = {}
for m in mnemos: for m in mnemos:
val = None val = None
if mnemos[m]['source'] in run.control_sources: try:
val = run.get_run_value(mnemos[m]['source'], if mnemos[m]['source'] in run.control_sources:
mnemos[m]['key']) val = run.get_run_value(mnemos[m]['source'],
mnemos[m]['key'])
except Exception as e:
log.info(f'Error while retrieving {m} mnemonic: {e}')
continue
run_values[m] = val run_values[m] = val
return run_values return run_values
......
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