We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99bd61d commit cb444edCopy full SHA for cb444ed
1 file changed
splitio/sync/synchronizer.py
@@ -238,6 +238,7 @@ def synchronize_splits(self, till, sync_segments=True):
238
if not self._split_synchronizers.segment_sync.segment_exist_in_storage(segment):
239
new_segments.append(segment)
240
if sync_segments and len(new_segments) != 0:
241
+ _LOGGER.debug('Synching Segments: %s', ','.join(new_segments))
242
success = self._split_synchronizers.segment_sync.synchronize_segments(new_segments, True)
243
if not success:
244
_LOGGER.error('Failed to schedule sync one or all segment(s) below.')
0 commit comments