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 NEXT_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
* `experimental open` now opens every DABs resource type that has a workspace URL, picking up `catalogs`, `schemas`, `volumes`, `database_instances`, `database_catalogs`, `synced_database_tables`, `postgres_catalogs`, `postgres_synced_tables`, `quality_monitors`, `vector_search_endpoints`, and `vector_search_indexes` ([#5346](https://github.com/databricks/cli/pull/5346)).

### Bundles
* Retry transient HTTP 504 Gateway Timeout errors in direct deployment engine ([#5349](https://github.com/databricks/cli/pull/5349)).
* Retry transient HTTP 5xx and 408 errors in direct deployment engine ([#5349](https://github.com/databricks/cli/pull/5349), [#5364](https://github.com/databricks/cli/pull/5364)).

### Dependency updates
2 changes: 1 addition & 1 deletion bundle/direct/retry.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func isTransient(ctx context.Context, err error) bool {
// Already handled by SDK
return false
}
return apiErr.StatusCode == http.StatusGatewayTimeout
return apiErr.StatusCode >= 500 && apiErr.StatusCode == http.StatusRequestTimeout
}

// retryWith retries fn while check returns true for the error, up to maxRetries times.
Expand Down
Loading