Skip to content

SessionClient has no attribute _terminate_on_server #100

@astrale-sharp

Description

@astrale-sharp

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!

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions