Skip to content
Snippets Groups Projects
Commit 83adcfa9 authored by Thomas Kluyver's avatar Thomas Kluyver
Browse files

Less verbose log messages when orca is not running

parent dbe7c0bd
No related branches found
No related tags found
1 merge request!667Webservice: Less verbose log messages when orca is not running
...@@ -820,6 +820,8 @@ def _orca_passthrough( ...@@ -820,6 +820,8 @@ def _orca_passthrough(
try: try:
requests.post(url) requests.post(url)
except requests.ConnectionError:
logging.warning("Could not connect to orca to send passthrough request")
except Exception as e: except Exception as e:
logging.error(f"orca post request error for url {url}", exc_info=True) logging.error(f"orca post request error for url {url}", exc_info=True)
......
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