Skip to content

Commit

Permalink
Reword comment so that it's a bit clearer
Browse files Browse the repository at this point in the history
  • Loading branch information
tkaemming committed Mar 26, 2024
1 parent d0c6aef commit db47485
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions posthog/settings/ingestion.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@
# KEEP IN SYNC WITH plugin-server/src/config/config.ts
BUFFER_CONVERSION_SECONDS = get_from_env("BUFFER_CONVERSION_SECONDS", default=60, type_cast=int)

# Whether or not random partitioning (i.e. overflow routing) should be enabled
# at all. Enabling this setting this does not cause messages to be randomly
# partitioned, but only allows them to be be randomly partitioned if other
# criteria are met. Note that this setting takes precedence over other
# partition-related settings below, if disabled.
# Whether or not random partitioning (i.e. overflow routing) should be allowed.
# (Enabling this setting this does not cause messages to be randomly
# partitioned.) Note that this setting, if disabled, takes precedence over other
# partitioning-related settings below.
CAPTURE_ALLOW_RANDOM_PARTITIONING = get_from_env("CAPTURE_ALLOW_RANDOM_PARTITIONING", True, type_cast=str_to_bool)

# A list of <team_id:distinct_id> pairs (in the format 2:myLovelyId) that we should use
Expand Down

0 comments on commit db47485

Please sign in to comment.