import jsonfrom channels.consumer import SyncConsumerfrom channels.exceptions import StopConsumerfrom asgiref.sync import async_to_syncfrom channels.layers import get_channel_layer
class ClientAlertPtrConsumer(SyncConsumer):
def websocket_connect(self, event):
async_to_sync(self.channel_layer.group_add)("AlertReceivers", self.channel_name)
self.send({
"type": "websocket.accept",
})
def websocket_receive(self, event):
content = json.dumps("received")
async_to_sync(self.channel_layer.group_send)("AlertReceivers", {"type":"alert.receive"})
def websocket_disconnect(self, event):
async_to_sync(self.channel_layer.group_discard)("AlertReceivers", self.channel_name)
raise StopConsumer
def alert_receive(self, event): # Get a message on the alert.receive type
content = json.dumps("Group send working")
self.send({
"type":"websocket.send", # then send a message out on websocket protocol to whatever the 'self' channel is.
"text":content,
})from asgiref.sync import async_to_sync
from channels.layers import get_channel_layer
channel_layer = get_channel_layer()
async_to_sync(channel_layer.group_send)("AlertReceivers", {'type':"alert.receive"})
Traceback (most recent call last): File "/usr/lib/python3.5/code.py", line 91, in runcode exec(code, self.locals) File "<console>", line 1, in <module> File "/usr/local/lib/python3.5/dist-packages/asgiref/sync.py", line 49, in __call__ return call_result.result() File "/usr/lib/python3.5/concurrent/futures/_base.py", line 398, in result return self.__get_result() File "/usr/lib/python3.5/concurrent/futures/_base.py", line 357, in __get_result raise self._exception File "/usr/local/lib/python3.5/dist-packages/asgiref/sync.py", line 63, in main_wrap result = await self.awaitable(*args, **kwargs) File "/usr/local/lib/python3.5/dist-packages/channels_redis/core.py", line 313, in group_send pool = await self.connection(self.consistent_hash(group)) File "/usr/local/lib/python3.5/dist-packages/channels_redis/core.py", line 377, in connection self.pools[index] = await aioredis.create_redis_pool(**self.hosts[index]) File "/usr/local/lib/python3.5/dist-packages/aioredis/commands/__init__.py", line 197, in create_redis_pool loop=loop) File "/usr/local/lib/python3.5/dist-packages/aioredis/pool.py", line 59, in create_pool await pool.wait_closed() File "/usr/local/lib/python3.5/dist-packages/aioredis/pool.py", line 177, in wait_closed await asyncio.shield(self._close_waiter, loop=self._loop) File "/usr/lib/python3.5/asyncio/futures.py", line 361, in __iter__ yield self # This tells Task to wait for completion.RuntimeError: Task <Task pending coro=<AsyncToSync.main_wrap() running at /usr/local/lib/python3.5/dist-packages/asgiref/sync.py:63> cb=[_run_until_complete_cb() at /usr/lib/python3.5/asyncio/base_events.py:164]> got Future <Future pending> attached to a different loop
async_to_sync(channel_layer.group_send)("AlertReceivers", {'type':"alert.receive"})def alert_receive(self, event): # Get a message of the alert.receive type off of channel_layers content = json.dumps("Group send working") self.send({ "type":"websocket.send", # then send a message out on websocket protocol to whatever the 'self' channel is. "text":content, })from asgiref.sync import async_to_sync
from channels.layers import get_channel_layer
channel_layer = get_channel_layer()
async_to_sync(channel_layer.group_send)("AlertReceivers", {"type": "alert.receive"})
async_to_sync(self.channel_layer.group_send)("AlertReceivers", {"type": "alert.receive"})--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/8aa00799-ffe1-4eba-b991-cd8d04da38d3%40googlegroups.com.