We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f06d805 commit b7c6fceCopy full SHA for b7c6fce
pusher/pusher_client.py
@@ -91,7 +91,7 @@ def trigger(self, channels, event_name, data, socket_id=None):
91
raise ValueError("event_name too long")
92
93
data = data_to_string(data, self._json_encoder)
94
- if sys.getsizeof(data) > 10240:
+ if sys.getsizeof(data) > 30720:
95
raise ValueError("Too much data")
96
97
channels = list(map(validate_channel, channels))
0 commit comments