-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Labels
Description
Hello there, not sure exactly why I run into this code in the first place but
# ./core/session_client.py:254
def terminate(
self,
signum: Optional[int] = None, # Only required for for signal handling.
frame: Optional[FrameType] = None, # Only required for for signal handling.
):
if not self._client_up:
return
self._log.info("[session-client] TERMINATING ...")
try:
self._terminate_on_server() <--- this here
except EOFError: # EOFError is raised if server socket is closed - ignore it
self._log.info("[session-client] Remote socket closed.")
..........
grepping shows that _terminate_on_server doesn't exist in the code base!