From f67fe45d5fe355b2bccd1dde567b6660fd3d236b Mon Sep 17 00:00:00 2001
From: davebshow <davebshow@gmail.com>
Date: Sun, 27 Aug 2017 16:57:52 -0400
Subject: [PATCH] don't use weakref for now...not sure why, but doesn't seem to
 be behaving consistently

---
 goblin/session.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/goblin/session.py b/goblin/session.py
index b80138d..9798436 100644
--- a/goblin/session.py
+++ b/goblin/session.py
@@ -75,7 +75,7 @@ class Session:
         self._loop = self._app._loop
         self._use_session = False
         self._pending = collections.deque()
-        self._current = weakref.WeakValueDictionary()
+        self._current = dict()
         self._get_hashable_id = get_hashable_id
         self._graph = aiogremlin.Graph()
 
-- 
GitLab