| Server IP : 198.54.126.161 / Your IP : 216.73.216.232 Web Server : LiteSpeed System : Linux premium12.web-hosting.com 4.18.0-553.94.1.lve.el8.x86_64 #1 SMP Thu Jan 22 12:37:22 UTC 2026 x86_64 User : amerfigf ( 898) PHP Version : 8.2.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/opt/hc_python/lib64/python3.12/site-packages/sentry_sdk/integrations/ |
Upload File : |
from functools import wraps
from typing import Any
from sentry_sdk.feature_flags import add_feature_flag
from sentry_sdk.integrations import DidNotEnable, Integration
try:
from UnleashClient import UnleashClient
except ImportError:
raise DidNotEnable("UnleashClient is not installed")
class UnleashIntegration(Integration):
identifier = "unleash"
@staticmethod
def setup_once() -> None:
# Wrap and patch evaluation methods (class methods)
old_is_enabled = UnleashClient.is_enabled
@wraps(old_is_enabled)
def sentry_is_enabled(
self: "UnleashClient", feature: str, *args: "Any", **kwargs: "Any"
) -> "Any":
enabled = old_is_enabled(self, feature, *args, **kwargs)
# We have no way of knowing what type of unleash feature this is, so we have to treat
# it as a boolean / toggle feature.
add_feature_flag(feature, enabled)
return enabled
UnleashClient.is_enabled = sentry_is_enabled # type: ignore