Merge pull request #1846 from william-richard/log-event-ids-are-strings

Filter event log ids should be strings
This commit is contained in:
Steve Pulec 2018-10-15 00:05:37 -04:00 committed by GitHub
commit c8a083a066
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View file

@ -19,7 +19,7 @@ class LogEvent:
def to_filter_dict(self):
return {
"eventId": self.eventId,
"eventId": str(self.eventId),
"ingestionTime": self.ingestionTime,
# "logStreamName":
"message": self.message,