From fa1ae889d836ef578e2a592fb6fd18028fde72d5 Mon Sep 17 00:00:00 2001 From: Ryan Barrett Date: Thu, 4 Jul 2024 22:13:28 -0700 Subject: [PATCH] Protocol.check_supported: don't report error, just log --- protocol.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/protocol.py b/protocol.py index 0b674466..abecc258 100644 --- a/protocol.py +++ b/protocol.py @@ -1533,10 +1533,7 @@ class Protocol: (obj.type in as1.CRUD_VERBS and inner_type and inner_type not in cls.SUPPORTED_AS1_TYPES)): - msg = f"Bridgy Fed for {cls.LABEL} doesn't support {obj.type} {inner_type} yet" - logger.info(f'AS1: {json_dumps(obj.as1, indent=2)}') - report_error(msg) - error(msg, status=204) + error(f"Bridgy Fed for {cls.LABEL} doesn't support {obj.type} {inner_type} yet", status=204) @cloud_tasks_only