Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -367,8 +367,8 @@ workflows:
# - py39cassandra
# - py39couchbase
# - py39gevent_starlette
- py311googlecloud
- py312googlecloud
# - py311googlecloud
# - py312googlecloud
- final_job:
requires:
- python38
Expand All @@ -380,5 +380,5 @@ workflows:
# - py39cassandra
# - py39couchbase
# - py39gevent_starlette
- py311googlecloud
- py312googlecloud
# - py311googlecloud
# - py312googlecloud
4 changes: 2 additions & 2 deletions src/instana/instrumentation/starlette_inst.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@

from typing import Any, Callable, Dict, Tuple

import starlette.applications

try:
import starlette
import wrapt
from starlette.middleware import Middleware
import starlette.applications

from instana.instrumentation.asgi import InstanaASGIMiddleware
from instana.log import logger
Expand All @@ -34,5 +33,6 @@ def init_with_instana(
return wrapped(*args, **kwargs)

logger.debug("Instrumenting Starlette")

except ImportError:
pass