Skip to content

Commit

Permalink
fix: ENABLE_LW_DELETIONS_CONSUMER default to False (#6546)
Browse files Browse the repository at this point in the history
  • Loading branch information
MeredithAnya authored Nov 8, 2024
1 parent 2d54fea commit c3c186e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion snuba/cli/devserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ def devserver(*, bootstrap: bool, workers: bool) -> None:
[
"snuba",
"lw-deletions-consumer",
"--storage-name=search_issues",
"--storage=search_issues",
"--consumer-group=search_issues_deletes_group",
"--max-rows-batch-size=10",
"--max-batch-time-ms=1000",
Expand Down
2 changes: 1 addition & 1 deletion snuba/settings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ class RedisClusters(TypedDict):
)

# Enable lw deletions consumer (search issues only for now)
ENABLE_LW_DELETIONS_CONSUMER = os.environ.get("ENABLE_LW_DELETIONS_CONSUMER", True)
ENABLE_LW_DELETIONS_CONSUMER = os.environ.get("ENABLE_LW_DELETIONS_CONSUMER", False)

# Cutoff time from UTC 00:00:00 to stop running optimize jobs to
# avoid spilling over to the next day.
Expand Down

0 comments on commit c3c186e

Please sign in to comment.