From dbfea51951aa603a191c57d4cd4a4d4e79262a40 Mon Sep 17 00:00:00 2001 From: Emily Rockman Date: Tue, 30 Jan 2024 09:34:53 -0600 Subject: [PATCH] put back error --- dbt_common/events/functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbt_common/events/functions.py b/dbt_common/events/functions.py index 6402c791..fe29a543 100644 --- a/dbt_common/events/functions.py +++ b/dbt_common/events/functions.py @@ -94,7 +94,7 @@ def msg_to_dict(msg: EventMsg) -> dict: msg_dict = dict() try: msg_dict = MessageToDict( - msg, + msg.data, preserving_proto_field_name=True, including_default_value_fields=True, # type: ignore )