Skip to content
Snippets Groups Projects
Commit e552c9fc authored by Cody Messick's avatar Cody Messick
Browse files

lloidparts.py: Fixed bug that caused segments to not propagate properly in low

latency analysis, thus causing original snapshot files to continually be
overwritten instead of writing new files each snapshot
parent 1f47fa4f
No related branches found
No related tags found
No related merge requests found
......@@ -390,6 +390,9 @@ class Handler(simplehandler.Handler):
self.dataclass.snapshot_output_url("%s_LLOID" % self.tag, "xml.gz", verbose = self.verbose)
except TypeError as te:
print >>sys.stderr, "Warning: couldn't build output file on checkpoint, probably there aren't any triggers: %s" % te
# Resync seglistdicts in dataclass and here
# FIXME: don't do this, get rid of the Data class
self.dataclass.seglistdicts = self.seglistdicts
def flush_segments_to_disk(self, timestamp):
"""!
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment