Skip to content

Commit 45186db

Browse files
authored
[Fix] Increase databricks_library installation timeout from 15m to 30m (#4479)
## Changes Currently, `databricks_library` waits for 15m for libraries to install. We received a report that this was a bit too short for some use cases. For now, I'll bump this up to 30m to mitigate the issue faced by this customer. The long-term plan to fix this should be based on adopting https://developer.hashicorp.com/terraform/plugin/framework/resources/timeouts in our provider. ## Tests I did not do any tests for this change.
1 parent 833c609 commit 45186db

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

NEXT_CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### New Features and Improvements
66

77
* Support updating `options` in `databricks_catalog` ([#4476](https://github.com/databricks/terraform-provider-databricks/pull/4476)).
8+
* Increase `databricks_library` timeout from 15m to 30m.
89

910
### Bug Fixes
1011

internal/providers/pluginfw/products/library/resource_library.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import (
2929
)
3030

3131
const resourceName = "library"
32-
const libraryDefaultInstallationTimeout = 15 * time.Minute
32+
const libraryDefaultInstallationTimeout = 30 * time.Minute
3333

3434
var _ resource.ResourceWithConfigure = &LibraryResource{}
3535

0 commit comments

Comments
 (0)