Skip to content
Snippets Groups Projects
Commit 45a0bb29 authored by Patrick Godwin's avatar Patrick Godwin
Browse files

gstlal_feature_aggregator: fix typo in time column when aggregating data

parent ad751881
No related branches found
No related tags found
No related merge requests found
......@@ -170,7 +170,7 @@ class StreamAggregator(object):
self.agg_sink.store_columns('latency', metric_data, aggregate=self.data_type)
### store and aggregate features
timeseries_data = {(channel, self._channel_to_subsystem(channel)): {'time': timeseries['trigger_time'], 'fields': {'data': timeseries['snr']}} for channel, timeseries in all_timeseries.items()}
timeseries_data = {(channel, self._channel_to_subsystem(channel)): {'time': timeseries['time'], 'fields': {'data': timeseries['snr']}} for channel, timeseries in all_timeseries.items()}
self.agg_sink.store_columns('snr', timeseries_data, aggregate=self.data_type)
try:
......
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