From f98f1ac9ee3518f6adfb68a4584e3065c2694a36 Mon Sep 17 00:00:00 2001 From: Tim Holm Date: Thu, 10 Aug 2023 14:20:44 +1000 Subject: [PATCH] fix typo causing recursion. --- nitric/faas.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nitric/faas.py b/nitric/faas.py index bdd7da9..1bd8ac3 100644 --- a/nitric/faas.py +++ b/nitric/faas.py @@ -768,7 +768,7 @@ def _bucket_notification_handler(self): @property def _websocket_handler(self): - return self._websocket_handler + return self.__websocket_handler async def _run(self): """Register a new FaaS worker with the Membrane, using the provided function as the handler."""