From d53e00a042385319dc3cad522fed689e78632c08 Mon Sep 17 00:00:00 2001 From: Mario Jonke Date: Fri, 16 Oct 2020 23:11:20 +0200 Subject: [PATCH] Make SpanProcessor.on_start accept parent Context (#1251) * context from Tracer.start_span is passed through to the SpanProcessor * fix linting issue in falcon test app when linting with eachdist script * fix global error handler test as it read installed extensions * reset global Configuration object state after tests were run --- .../opentelemetry-instrumentation-falcon/tests/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/instrumentation/opentelemetry-instrumentation-falcon/tests/app.py b/instrumentation/opentelemetry-instrumentation-falcon/tests/app.py index 76d19ae0d..dcbfe11b4 100644 --- a/instrumentation/opentelemetry-instrumentation-falcon/tests/app.py +++ b/instrumentation/opentelemetry-instrumentation-falcon/tests/app.py @@ -5,6 +5,7 @@ import falcon class HelloWorldResource: def _handle_request(self, _, resp): + # pylint: disable=no-member resp.status = falcon.HTTP_201 resp.body = "Hello World"