You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
aiogremlin/driver/aiohttp/transport.py:22: RuntimeWarning: coroutine 'ClientWebSocketResponse.send_bytes' was never awaited
self._ws.send_bytes(message)
I'm getting this warning while using goblin. It also seems that my db is not receiving the request. I added a return to that line and both problems went away.
aiogremlin 3.2.6
goblin 2.1.0
The text was updated successfully, but these errors were encountered:
It appears that send_bytes is now a coroutine (as of aiohttp 3.0), which means it should be awaited, not returned. We should probably use asyncio.iscoroutine to check now and await if necessary. Feel like doing a PR?
I'm getting this warning while using goblin. It also seems that my db is not receiving the request. I added a return to that line and both problems went away.
aiogremlin 3.2.6
goblin 2.1.0
The text was updated successfully, but these errors were encountered: