Skip to content

Commit 18a3884

Browse files
author
Callum Oakley
authored
Merge pull request #93 from yuuri111/update-max-channels
update max channel from 10 too 100
2 parents 13f6c12 + 942ace3 commit 18a3884

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pusher/pusher_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def trigger(self, channels, event_name, data, socket_id=None):
5757
channels, (collections.Sized, collections.Iterable)):
5858
raise TypeError("Expected a single or a list of channels")
5959

60-
if len(channels) > 10:
60+
if len(channels) > 100:
6161
raise ValueError("Too many channels")
6262

6363
channels = list(map(validate_channel, channels))

0 commit comments

Comments
 (0)