From 45a0bb2978c8800e3a258f7cc8195871ad92928b Mon Sep 17 00:00:00 2001 From: Patrick Godwin <patrick.godwin@ligo.org> Date: Wed, 12 Jun 2019 17:03:27 -0700 Subject: [PATCH] gstlal_feature_aggregator: fix typo in time column when aggregating data --- gstlal-burst/bin/gstlal_feature_aggregator | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gstlal-burst/bin/gstlal_feature_aggregator b/gstlal-burst/bin/gstlal_feature_aggregator index aff27803a0..38f669d495 100755 --- a/gstlal-burst/bin/gstlal_feature_aggregator +++ b/gstlal-burst/bin/gstlal_feature_aggregator @@ -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: -- GitLab