Skip to content

Commit 053d2ce

Browse files
committed
re-enable databricks
1 parent ed8f91e commit 053d2ce

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.circleci/manage-test-db.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ databricks_init() {
5151

5252
# Note: the cluster doesnt need to be running to create / drop catalogs, but it does need to be running to run the integration tests
5353
echo "Ensuring cluster is running"
54-
databricks clusters start $CLUSTER_ID
54+
# 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
5557
}
5658

5759
databricks_up() {

0 commit comments

Comments
 (0)