mirror of https://github.com/databricks/cli.git
default-python: Swap order of yes/no in serverless template (#2386)
## Changes Since at this moment we set default to 'no', interactively it should also default to 'no'. However, it just uses the first option. ## Tests Manually running `cli bundle init default-python`
This commit is contained in:
parent
6d27c7e69d
commit
ab3d82e32e
|
@ -33,7 +33,7 @@
|
||||||
"serverless": {
|
"serverless": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"default": "no",
|
"default": "no",
|
||||||
"enum": ["yes", "no"],
|
"enum": ["no", "yes"],
|
||||||
"description": "Use serverless compute",
|
"description": "Use serverless compute",
|
||||||
"order": 5
|
"order": 5
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue