Skip to content
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.

bug: Do not record the GCM data overflow error #567

Merged
merged 1 commit into from
Jul 28, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion autopush/router/gcm.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def _route(self, notification, uaid_data):
"to 3070 bytes. Converted buffer too " +
"long by %d bytes" %
(len(notification.data) - mdata),
413, errno=104)
413, errno=104, log_exception=False)

data['body'] = notification.data
data['con'] = notification.headers['content-encoding']
Expand Down