Skip to content

Commit

Permalink
fix(flags): Disable flagpole integration (#81765)
Browse files Browse the repository at this point in the history
Removing until we fix an issue in the SDK where a loop never terminates.
  • Loading branch information
cmanallen authored Dec 5, 2024
1 parent 06d844c commit b08668f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/sentry/utils/sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
from sentry.features.rollout import in_random_rollout
from sentry.utils import metrics
from sentry.utils.db import DjangoAtomicIntegration
from sentry.utils.flag import FlagPoleIntegration

# from sentry.utils.flag import FlagPoleIntegration
from sentry.utils.rust import RustInfoIntegration

# Can't import models in utils because utils should be the bottom of the food chain
Expand Down Expand Up @@ -465,7 +466,8 @@ def flush(
RustInfoIntegration(),
RedisIntegration(),
ThreadingIntegration(propagate_hub=True),
FlagPoleIntegration(),
# Temporarily disabled.
# FlagPoleIntegration(),
],
**sdk_options,
)
Expand Down

0 comments on commit b08668f

Please sign in to comment.