From 6904d40228ba7cd9516a4d8a99ab7baeb38e4363 Mon Sep 17 00:00:00 2001 From: Eric Duong Date: Mon, 8 Jan 2024 13:54:17 -0500 Subject: [PATCH] chore(data-warehouse): increase prop limit on hubspot integration (#19653) increase prop limit --- posthog/temporal/data_imports/pipelines/hubspot/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posthog/temporal/data_imports/pipelines/hubspot/__init__.py b/posthog/temporal/data_imports/pipelines/hubspot/__init__.py index 3275071efe992..6526a9d31256a 100644 --- a/posthog/temporal/data_imports/pipelines/hubspot/__init__.py +++ b/posthog/temporal/data_imports/pipelines/hubspot/__init__.py @@ -118,7 +118,7 @@ def crm_objects( props = ",".join(sorted(list(set(props)))) - if len(props) > 2000: + if len(props) > 5000: raise ValueError( ( "Your request to Hubspot is too long to process. "