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.
_possibly_started
1 parent 32ec15d commit 00c2bc7Copy full SHA for 00c2bc7
sentry_sdk/tracing.py
@@ -695,7 +695,7 @@ def __repr__(self):
695
)
696
697
698
- def _possibly_stated(self):
+ def _possibly_started(self):
699
# type: () -> bool
700
"""Returns whether the transaction might have been started.
701
@@ -709,7 +709,7 @@ def _possibly_stated(self):
709
710
def __enter__(self):
711
# type: () -> Transaction
712
- if not self._possibly_stated():
+ if not self._possibly_started():
713
logger.warning(
714
"""Transaction was entered without being started with sentry_sdk.start_transaction.
715
The transaction will not be sent to Sentry. To fix, start the transaction by
0 commit comments