File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -272,4 +272,4 @@ def convert_config_type(
272272 config_obj : Config ,
273273 config_type : t .Type [C ],
274274) -> C :
275- return config_type .parse_obj (config_obj .dict ())
275+ return config_type .parse_obj (config_obj .dict (exclude_computed_fields = True ))
Original file line number Diff line number Diff line change @@ -532,6 +532,7 @@ def test_connection_config_serialization():
532532 "extensions" : [],
533533 "pre_ping" : False ,
534534 "pretty_sql" : False ,
535+ "shared_connection" : True ,
535536 "connector_config" : {},
536537 "secrets" : [],
537538 "filesystems" : [],
@@ -544,6 +545,7 @@ def test_connection_config_serialization():
544545 "extensions" : [],
545546 "pre_ping" : False ,
546547 "pretty_sql" : False ,
548+ "shared_connection" : True ,
547549 "connector_config" : {},
548550 "secrets" : [],
549551 "filesystems" : [],
You can’t perform that action at this time.
0 commit comments