Skip to content

Commit a78c4c2

Browse files
author
Pierre Massat
authored
Merge 50bc4e9 into c51d864
2 parents c51d864 + 50bc4e9 commit a78c4c2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

snuba/settings/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,8 @@ class RedisClusters(TypedDict):
234234
# situation eventually)
235235
RAISE_ON_ALLOCATION_POLICY_FAILURES = False
236236

237-
TOPIC_PARTITION_COUNTS: Mapping[str, int] = {} # (logical topic name, # of partitions)
237+
# (logical topic name, # of partitions)
238+
TOPIC_PARTITION_COUNTS: Mapping[str, int] = {}
238239

239240
COLUMN_SPLIT_MIN_COLS = 6
240241
COLUMN_SPLIT_MAX_LIMIT = 1000
@@ -244,8 +245,6 @@ class RedisClusters(TypedDict):
244245
# Migrations for skipped groups will not be run.
245246
SKIPPED_MIGRATION_GROUPS: Set[str] = {
246247
"querylog",
247-
"profiles",
248-
"functions",
249248
"test_migration",
250249
"search_issues",
251250
"spans",
@@ -287,7 +286,8 @@ class RedisClusters(TypedDict):
287286

288287
# Subscriptions scheduler buffer size
289288
SUBSCRIPTIONS_DEFAULT_BUFFER_SIZE = 10000
290-
SUBSCRIPTIONS_ENTITY_BUFFER_SIZE: Mapping[str, int] = {} # (entity name, buffer size)
289+
# (entity name, buffer size)
290+
SUBSCRIPTIONS_ENTITY_BUFFER_SIZE: Mapping[str, int] = {}
291291

292292
# Used for migrating to/from writing metrics directly to aggregate tables
293293
# rather than using materialized views

0 commit comments

Comments
 (0)