Skip to content

Optional Features

fabric-cicd has an expected default flow; however, there will always be cases where overriding default behavior is required.

Feature Flags

For scenarios that aren't supported by default, fabric-cicd offers feature-flags. Below is an exhaustive list of currently supported features.

Flag Name Description
enable_lakehouse_unpublish Set to enable the deletion of Lakehouses
disable_print_identity Set to disable printing the executing identity name

Example

from fabric_cicd import append_feature_flag
append_feature_flag("enable_lakehouse_unpublish")
append_feature_flag("disable_print_identity")

Debugging

If an error arises, or you want to have full transparency to all calls being made outside the library, enable debugging. Enabling debugging will write all API calls to the terminal and to the fabric-cicd.log.

from fabric_cicd import change_log_level
change_log_level("DEBUG")