Skip to content

Commit

Permalink
fix bug in event processing in transform_data
Browse files Browse the repository at this point in the history
  • Loading branch information
wjo1212 committed Dec 24, 2018
1 parent 2220a39 commit 13110be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aliyun/log/logclient_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@ def _transform_events_to_logstore(runner, events, to_client, to_project, to_logs
source = event['__source__']
del event["__source__"]

new_events[(dt, topic, source)].append(new_event)
new_events[(dt, topic, source)].append(event)

for (dt, topic, source), contents in six.iteritems(new_events):

Expand Down

0 comments on commit 13110be

Please sign in to comment.