[BUG] Installation._unmarshal
initializes databricks.sdk.core.Config
when the value is None
#169
Labels
bug
Something isn't working
Description
The following code initiliatizes a
databricks.sdk.core.Config
when the valueinst
isNone
blueprint/src/databricks/labs/blueprint/installation.py
Lines 626 to 629 in cb1b8f0
This causes a bug in UCX when we load and save the
WorkspaceConfig
as that data classes has adatabricks.sdk.core.Config
attribute which is by defaultNone
and after loading it becamedatabricks.sdk.core.Config(**{})
. This field causes issues when it the config is used by ourRuntimeContext
which expects a different config than our cli context.Reproduce
The text was updated successfully, but these errors were encountered: