I am on SDK 1.6.5, Python 2.5
When I start my dev server and visit my channel test page at 127.0.0.1 everything works fine - token is generated and passed to front end, socket opens, client connected ping is received, my app sends a message to the client, it is received.
If I reload the page:
- no disconnect ping shows up in my logs (It should?)
- new token is generated (OK)
- front end js logs a socket opened with new token (OK)
- no client connected ping received
- ...my server-side code is now unaware that this socket is open and doesn't know how to send messages to the client
Am I misunderstanding the proper flow here?
If I shift+reload the page it's the same. I have to restart the dev server in order to get everything to work again.
Using djangoappengine:
inbound_services:
- warmup
- channel_presence
handlers:
- url: /_ah/channel/.*
script: djangoappengine/main/main.py