We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed8f91e commit 053d2ceCopy full SHA for 053d2ce
.circleci/manage-test-db.sh
@@ -51,7 +51,9 @@ databricks_init() {
51
52
# Note: the cluster doesnt need to be running to create / drop catalogs, but it does need to be running to run the integration tests
53
echo "Ensuring cluster is running"
54
- databricks clusters start $CLUSTER_ID
+ # the || true is to prevent the following error from causing an abort:
55
+ # > Error: is in unexpected state Running.
56
+ databricks clusters start $CLUSTER_ID || true
57
}
58
59
databricks_up() {
0 commit comments