Skip to content

Commit

Permalink
Removes region silo specifier from project config task
Browse files Browse the repository at this point in the history
  • Loading branch information
GabeVillalobos committed Aug 4, 2023
1 parent 56b8b5f commit f85ae12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sentry/tasks/relay.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
logger = logging.getLogger(__name__)


# TODO(hybrid-cloud): Add silo_mode for region once testing is adjusted
# The time_limit here should match the `debounce_ttl` of the projectconfig_debounce_cache
# service.
@instrumented_task(
Expand All @@ -22,7 +23,6 @@
soft_time_limit=5,
time_limit=10, # Extra 5 seconds to remove the debounce key.
expires=30, # Relay stops waiting for this anyway.
silo_mode=SiloMode.REGION,
)
def build_project_config(public_key=None, **kwargs):
"""Build a project config and put it in the Redis cache.
Expand Down

0 comments on commit f85ae12

Please sign in to comment.