We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d683efa commit 94b2659Copy full SHA for 94b2659
splitio/client/factory.py
@@ -614,10 +614,10 @@ def _build_localhost_factory(cfg):
614
None, None, None,
615
)
616
617
- split_sync_task = None
+ feature_flag_sync_task = None
618
segment_sync_task = None
619
if cfg['localhostRefreshEnabled'] and localhost_mode == LocalhostMode.JSON:
620
- split_sync_task = SplitSynchronizationTask(
+ feature_flag_sync_task = SplitSynchronizationTask(
621
synchronizers.split_sync.synchronize_splits,
622
cfg['featuresRefreshRate'],
623
@@ -626,7 +626,7 @@ def _build_localhost_factory(cfg):
626
cfg['segmentsRefreshRate'],
627
628
tasks = SplitTasks(
629
- split_sync_task,
+ feature_flag_sync_task,
630
segment_sync_task,
631
632
0 commit comments