5

I need help with enabling websockets through Heroku labs.

I execute 'heroku labs:enable websockets -a myapp' through the Toolbelt an I get - No such feature: websockets.

Any ideas?

Luke Peterson
  • 8,584
  • 8
  • 45
  • 46
Alex Pinsky
  • 315
  • 3
  • 14

1 Answers1

4

It's probably because Web Sockets are no longer a labs feature.

Web Sockets are now generally available.

If you are creating a new application on Heroku, there is no need to enable WebSockets or to configure your application to use the new router — this is now the default configuration.

jordelver
  • 8,292
  • 2
  • 32
  • 40
  • 1
    I have a created an app recently and it doesn't seem to have Web Sockets enabled. In my Meteor app I'm getting: `Error during WebSocket handshake: Unexpected response code: 400` Any suggestions? – Nick Dima Oct 13 '14 at 21:42
  • It doesn't sound like a problem with Heroku as such. Have a look at this answer http://stackoverflow.com/questions/21344378/intermittent-error-during-websocket-handshake-unexpected-response-code-400-on – jordelver Oct 14 '14 at 07:50