From ab3d82e32ee25ba2e8ece44b163600a1095bc132 Mon Sep 17 00:00:00 2001 From: Denis Bilenko Date: Wed, 26 Feb 2025 15:45:32 +0100 Subject: [PATCH] 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` --- .../templates/default-python/databricks_template_schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/template/templates/default-python/databricks_template_schema.json b/libs/template/templates/default-python/databricks_template_schema.json index 7a77ad3b1..c1c2db39d 100644 --- a/libs/template/templates/default-python/databricks_template_schema.json +++ b/libs/template/templates/default-python/databricks_template_schema.json @@ -33,7 +33,7 @@ "serverless": { "type": "string", "default": "no", - "enum": ["yes", "no"], + "enum": ["no", "yes"], "description": "Use serverless compute", "order": 5 }