From db47485b6dd3cff20b9ca5453957416f3680c5a3 Mon Sep 17 00:00:00 2001 From: Ted Kaemming <65315+tkaemming@users.noreply.github.com> Date: Tue, 26 Mar 2024 10:51:21 -0700 Subject: [PATCH] Reword comment so that it's a bit clearer --- posthog/settings/ingestion.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/posthog/settings/ingestion.py b/posthog/settings/ingestion.py index efbe05371d5e3..463db4121c440 100644 --- a/posthog/settings/ingestion.py +++ b/posthog/settings/ingestion.py @@ -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 pairs (in the format 2:myLovelyId) that we should use