We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
resource_detector
exc
1 parent ffe14e2 commit 4467e53Copy full SHA for 4467e53
opentelemetry-sdk/src/opentelemetry/sdk/resources/__init__.py
@@ -214,10 +214,10 @@ def create(
214
)
215
).load()()
216
217
- except Exception as exc: # pylint: disable=broad-exception-caught
+ except Exception: # pylint: disable=broad-exception-caught
218
logger.exception(
219
- "Failed to load resource detector %s, skipping",
220
- entrypoint.name
+ "Failed to load resource detector '%s', skipping",
+ resource_detector
221
222
continue
223
resource = get_aggregated_resources(
0 commit comments