diff --git a/examples/server/sanic/app.html b/examples/server/sanic/app.html index 0f58a08..30c5964 100644 --- a/examples/server/sanic/app.html +++ b/examples/server/sanic/app.html @@ -1,7 +1,7 @@ - Flask-SocketIO Test + Python-SocketIO Test -

Flask-SocketIO Test

+

Python-SocketIO Test

Send:

diff --git a/examples/server/wsgi/templates/index.html b/examples/server/wsgi/templates/index.html index bec1a62..8a7308a 100644 --- a/examples/server/wsgi/templates/index.html +++ b/examples/server/wsgi/templates/index.html @@ -1,7 +1,7 @@ - Flask-SocketIO Test + Python-SocketIO Test -

Flask-SocketIO Test

+

Python-SocketIO Test

Send:

diff --git a/src/socketio/kombu_manager.py b/src/socketio/kombu_manager.py index 0a63bc2..09e260c 100644 --- a/src/socketio/kombu_manager.py +++ b/src/socketio/kombu_manager.py @@ -86,7 +86,7 @@ class KombuManager(PubSubManager): # pragma: no cover return kombu.Exchange(self.channel, **options) def _queue(self): - queue_name = 'flask-socketio.' + str(uuid.uuid4()) + queue_name = 'python-socketio.' + str(uuid.uuid4()) options = {'durable': False, 'queue_arguments': {'x-expires': 300000}} options.update(self.queue_options) return kombu.Queue(queue_name, self._exchange(), **options)