diff --git a/ee/api/chalicelib/core/__init__.py b/ee/api/chalicelib/core/__init__.py index 602a54998..4f6268b65 100644 --- a/ee/api/chalicelib/core/__init__.py +++ b/ee/api/chalicelib/core/__init__.py @@ -34,5 +34,11 @@ if config("EXP_ALERTS", cast=bool, default=False): else: from . import alerts_processor as alerts_processor +if config("EXP_FUNNELS", cast=bool, default=False): + print(">>> Using experimental funnels") + if not config("EXP_SESSIONS_SEARCH", cast=bool, default=False): + from . import sessions as sessions_legacy -from . import significance_exp as significance + from . import significance_exp as significance +else: + from . import significance as significance diff --git a/ee/api/env.default b/ee/api/env.default index 49cd649de..2d4a4c1e6 100644 --- a/ee/api/env.default +++ b/ee/api/env.default @@ -65,4 +65,5 @@ EXP_AUTOCOMPLETE=false EXP_ERRORS_SEARCH=false EXP_METRICS=false EXP_7D_MV=false -EXP_ALERTS=false \ No newline at end of file +EXP_ALERTS=false +EXP_FUNNELS=false \ No newline at end of file diff --git a/frontend/app/components/Session_/OverviewPanel/components/TimelinePointer/TimelinePointer.tsx b/frontend/app/components/Session_/OverviewPanel/components/TimelinePointer/TimelinePointer.tsx index 6e45b5e99..ad179dfea 100644 --- a/frontend/app/components/Session_/OverviewPanel/components/TimelinePointer/TimelinePointer.tsx +++ b/frontend/app/components/Session_/OverviewPanel/components/TimelinePointer/TimelinePointer.tsx @@ -38,7 +38,7 @@ const TimelinePointer = React.memo((props: Props) => {