Skip to content

Commit

Permalink
only skip None values in options
Browse files Browse the repository at this point in the history
  • Loading branch information
Dav1dde committed Dec 4, 2023
1 parent fdc1660 commit 83d7c6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sentry/relay/globalconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def get_global_config():
options = dict()
for option in RELAY_OPTIONS:
value = sentry.options.get(option)
if value:
if value is not None:
options[option] = value

if options:
Expand Down

0 comments on commit 83d7c6f

Please sign in to comment.