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.
2 parents 032a81f + 2589522 commit 964a46fCopy full SHA for 964a46f
hack/log-explainer.py
@@ -92,10 +92,10 @@ def parse_lines(lines):
92
sync['lines'] = []
93
sync['manifests'] = {}
94
metadata['syncs'].append(sync)
95
- if sync:
96
- sync['lines'].append(line)
97
- else:
+ if not sync:
98
logging.warning('sync worker line outside of sync: {}'.format(line))
+ continue
+ sync['lines'].append(line)
99
if line['message'].startswith(end_of_sync_cycle_prefix):
100
sync['results'] = {
101
'result': line['message'][len(end_of_sync_cycle_prefix):],
0 commit comments