Skip to content

Commit

Permalink
Merge branch 'main' into custom-transpiler-stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
kt474 committed Oct 21, 2022
2 parents e54f001 + 9c04655 commit a78c004
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
6 changes: 3 additions & 3 deletions qiskit_ibm_provider/utils/backend_decoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ def configuration_from_server_data(
return QasmBackendConfiguration.from_dict(raw_config)
except Exception: # pylint: disable=broad-except
logger.warning(
'Remote backend "%s" for service instance %s could not be instantiated due to an '
"invalid config: %s",
'Remote backend "%s" for service instance %s could not be instantiated due '
"to an invalid server-side configuration",
raw_config.get("backend_name", raw_config.get("name", "unknown")),
repr(instance),
traceback.format_exc(),
)
logger.debug("Invalid device configuration: %s", traceback.format_exc())
return None


Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
fixes:
- |
A warning log message when loading an invalid backend has had the core message
switched to a debug log message as certain backends were causing issues
for all users upon loading the provider. Now a much less verbose message is
emitted.

0 comments on commit a78c004

Please sign in to comment.