Skip to content

Commit e7c8109

Browse files
committed
Integration test for http_request_timeout parameter (azurebs)
1 parent 448b523 commit e7c8109

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

azurebs/integration/general_azure_test.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,14 @@ var _ = Describe("General testing for all Azure regions", func() {
7575
func(cfg *config.AZStorageConfig) { integration.AssertLifecycleWorks(cliPath, cfg) },
7676
configurations,
7777
)
78+
DescribeTable("Blobstore lifecycle works with http_request_timeout set",
79+
func(cfg *config.AZStorageConfig) {
80+
cfgCopy := *cfg
81+
cfgCopy.HTTPRequestTimeout = "30s"
82+
integration.AssertLifecycleWorks(cliPath, &cfgCopy)
83+
},
84+
configurations,
85+
)
7886
DescribeTable("Invoking `get` on a non-existent-key fails",
7987
func(cfg *config.AZStorageConfig) { integration.AssertGetNonexistentFails(cliPath, cfg) },
8088
configurations,

0 commit comments

Comments
 (0)