From 73bc9aa8ecbbe5aec2d0c6c421f9fb966f277c60 Mon Sep 17 00:00:00 2001 From: Romuald Juchnowicz-Bierbasz Date: Fri, 8 Mar 2019 10:16:57 +0100 Subject: [PATCH] SDK-2623: Call shutdown on socket close --- galaxy/api/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galaxy/api/plugin.py b/galaxy/api/plugin.py index 1fb4bb4..a4e5f77 100644 --- a/galaxy/api/plugin.py +++ b/galaxy/api/plugin.py @@ -39,7 +39,7 @@ class Plugin(): self._notification_client = NotificationClient(self._writer, encoder) def eof_handler(): - self._active = False + self._shutdown() self._server.register_eof(eof_handler) # internal