We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7326738 commit 090916eCopy full SHA for 090916e
graphdatascience/session/aurads_sessions.py
@@ -59,8 +59,8 @@ def get_or_create(
59
60
if existing_session:
61
session_id = existing_session.id
62
- # "0MB" or "" is AuraAPI default value for memory if none can be retrieved
63
- if existing_session.memory.value == "0MB" or existing_session.memory == SESSION_MEMORY_VALUE_UNKNOWN:
+ # AuraAPI default value for memory if none can be retrieved
+ if existing_session.memory == SESSION_MEMORY_VALUE_UNKNOWN:
64
self._logger.debug(
65
f"Reusing existing session with id `{session_id}` as size for session is unknown during creation."
66
)
0 commit comments