Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • goblin-ogm/aiogremlin
  • grzn/aiogremlin
2 results
Show changes
Commits on Source (2)
......@@ -54,3 +54,5 @@ docs/_build/
# PyBuilder
target/
.idea/
......@@ -106,7 +106,7 @@ class ConnectionPool:
self._max_inflight = max_inflight
self._response_timeout = response_timeout
self._message_serializer = message_serializer
self._condition = asyncio.Condition(loop=self._loop)
self._condition = asyncio.Condition()
self._available = collections.deque()
self._acquired = collections.deque()
self._provider = provider
......