Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion metaflow/metaflow_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@
# Feature flag (experimental features that are *explicitly* unsupported)

# Process configs even when using the click_api for Runner/Deployer
CLICK_API_PROCESS_CONFIG = from_conf("CLICK_API_PROCESS_CONFIG", False)
CLICK_API_PROCESS_CONFIG = from_conf("CLICK_API_PROCESS_CONFIG", True)


# PINNED_CONDA_LIBS are the libraries that metaflow depends on for execution
Expand Down
2 changes: 1 addition & 1 deletion test/core/tests/basic_config_parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class BasicConfigTest(MetaflowTest):
"silly_config": {
"required": True,
"parser": "silly_parser",
"default": "'silly.txt'",
"default": "'basic_config_silly.txt'",
},
"config2": {},
# Test using a function to get the value
Expand Down
Loading