From 300ade5d432432ea880452e58185011b443a7baa Mon Sep 17 00:00:00 2001 From: Pawel Kierski Date: Mon, 4 Mar 2019 11:52:08 +0100 Subject: [PATCH] Fix handling unknown notification --- galaxy/api/jsonrpc.py | 1 + 1 file changed, 1 insertion(+) diff --git a/galaxy/api/jsonrpc.py b/galaxy/api/jsonrpc.py index 9dadb48..90989c5 100644 --- a/galaxy/api/jsonrpc.py +++ b/galaxy/api/jsonrpc.py @@ -104,6 +104,7 @@ class Server(): method = self._notifications.get(request.method) if not method: logging.error("Received uknown notification: %s", request.method) + return callback, internal = method if internal: