Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add support for $SENTRY_DEBUG and $SENTRY_SPOTLIGHT #2374

Merged
Prev Previous commit
Next Next commit
maybe now?
  • Loading branch information
Burak Yigit Kaya committed Aug 15, 2024
commit 29c71ad5b883d7bdaa9b0fe77e03576f5ae4ba78
2 changes: 1 addition & 1 deletion sentry-ruby/lib/sentry/utils/env_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module EnvHelper
TRUTHY_ENV_VALUES = %w[t true yes y 1 on].freeze
FALSY_ENV_VALUES = %w[f false no n 0 off].freeze

def env_to_bool(value, strict: false)
def EnvHelper.env_to_bool(value, strict: false)
BYK marked this conversation as resolved.
Show resolved Hide resolved
value = value.to_s
normalized = value.downcase

Expand Down
Loading