Skip to content

Commit baf373a

Browse files
authored
Merge pull request #360 from splitio/update-vars-factory
update vars factory
2 parents d22495c + 94b2659 commit baf373a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

splitio/client/factory.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -614,10 +614,10 @@ def _build_localhost_factory(cfg):
614614
None, None, None,
615615
)
616616

617-
split_sync_task = None
617+
feature_flag_sync_task = None
618618
segment_sync_task = None
619619
if cfg['localhostRefreshEnabled'] and localhost_mode == LocalhostMode.JSON:
620-
split_sync_task = SplitSynchronizationTask(
620+
feature_flag_sync_task = SplitSynchronizationTask(
621621
synchronizers.split_sync.synchronize_splits,
622622
cfg['featuresRefreshRate'],
623623
)
@@ -626,7 +626,7 @@ def _build_localhost_factory(cfg):
626626
cfg['segmentsRefreshRate'],
627627
)
628628
tasks = SplitTasks(
629-
split_sync_task,
629+
feature_flag_sync_task,
630630
segment_sync_task,
631631
None, None, None,
632632
)

0 commit comments

Comments
 (0)