Skip to content
Snippets Groups Projects

[AGIPD][TESTs]test_agipdlib AGIPDCtrl and get_bias_voltage for AGIPD1M and AGIPD500K

Merged Karim Ahmed requested to merge test/test_agipdlib into master
All threads resolved!
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
+ 2
2
@@ -814,7 +814,7 @@ def _orca_passthrough(
args.extend([f"{k}={v}" for k, v in kwargs.items()])
url = f"{base_url}:{port}/{route}/{proposal_number}?{'&'.join(filter(None, args))}"
except Exception as e:
except Exception:
logging.warning("error building orca passthrough request", exc_info=True)
return None
@@ -822,7 +822,7 @@ def _orca_passthrough(
requests.post(url)
except requests.ConnectionError:
logging.warning("Could not connect to orca to send passthrough request")
except Exception as e:
except Exception:
logging.error(f"orca post request error for url {url}", exc_info=True)
Loading