How Can I Transition A Live App To A Different Cluster?
Caveats
Transition process (using JS client)
pusher_old = Pusher::Client.new({ app_id: 'OLD_APP_ID', key: '...', secret: '...', }) pusher_new = Pusher::Client.new({ app_id: 'NEW_APP_ID', key: '...', secret: '...', cluster: 'eu', })var pusher = new Pusher('NEW_APP_KEY', { cluster: 'eu', forceTLS: true });
Other things to consider
If you're using private channels
PreviousHow Can I Stop Channels Users Going Offline For An Instant When They Navigate Between Pages?NextCan I use Pusher Channel Authentication with Web Framework CSRF Protection?
Last updated