Closed musabhusaini closed 5 years ago
We are using a custom Pusher implementation that is not bound by the 10240
data length constraint. This PR parameterizes some of the hard-coded constraints so they can be configured based on the underlying Pusher implementation.
Closing based on #143. Will reopen, if necessary.
requirements.txt
andsetup.py
have been updatedAllows customizing Pusher implementation by adding the following parameters to
Pusher
constructor:max_num_channels
: Maximum number of channels that can be triggered at a given timemax_len_event_name
: Maximum length of event namesmax_len_data
: Maximum length of data (post JSON serialisation) that can be sent at onceUpdated
README.md
and added tests