Browse Source

Renamed flask-socketio references to python-socketio (Fixes #1377)

pull/1381/head
Miguel Grinberg 7 months ago
parent
commit
5f83cd0f7b
Failed to extract signature
  1. 4
      examples/server/sanic/app.html
  2. 4
      examples/server/wsgi/templates/index.html
  3. 2
      src/socketio/kombu_manager.py

4
examples/server/sanic/app.html

@ -1,7 +1,7 @@
<!DOCTYPE HTML>
<html>
<head>
<title>Flask-SocketIO Test</title>
<title>Python-SocketIO Test</title>
<script type="text/javascript" src="//code.jquery.com/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/socket.io/4.7.2/socket.io.min.js"></script>
<script type="text/javascript" charset="utf-8">
@ -54,7 +54,7 @@
</script>
</head>
<body>
<h1>Flask-SocketIO Test</h1>
<h1>Python-SocketIO Test</h1>
<h2>Send:</h2>
<form id="emit" method="POST" action='#'>
<input type="text" name="emit_data" id="emit_data" placeholder="Message">

4
examples/server/wsgi/templates/index.html

@ -1,7 +1,7 @@
<!DOCTYPE HTML>
<html>
<head>
<title>Flask-SocketIO Test</title>
<title>Python-SocketIO Test</title>
<script type="text/javascript" src="//code.jquery.com/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/socket.io/4.7.2/socket.io.min.js"></script>
<script type="text/javascript" charset="utf-8">
@ -54,7 +54,7 @@
</script>
</head>
<body>
<h1>Flask-SocketIO Test</h1>
<h1>Python-SocketIO Test</h1>
<h2>Send:</h2>
<form id="emit" method="POST" action='#'>
<input type="text" name="emit_data" id="emit_data" placeholder="Message">

2
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)

Loading…
Cancel
Save