Skip to content

Commit

Permalink
Align azure timeout with s3
Browse files Browse the repository at this point in the history
  • Loading branch information
phoebusm committed Apr 10, 2024
1 parent 23b3b94 commit 55ba79e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/arcticdb/storage/azure/azure_storage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ using namespace Azure::Storage::Blobs;
AzureStorage::AzureStorage(const LibraryPath &library_path, OpenMode mode, const Config &conf) :
Storage(library_path, mode),
root_folder_(object_store_utils::get_root_folder(library_path)),
request_timeout_(conf.request_timeout() == 0 ? 60000 : conf.request_timeout()) {
request_timeout_(conf.request_timeout() == 0 ? 200000 : conf.request_timeout()) {
if(conf.use_mock_storage_for_testing()) {
ARCTICDB_RUNTIME_DEBUG(log::storage(), "Using Mock Azure storage");
azure_client_ = std::make_unique<MockAzureClient>();
Expand Down

0 comments on commit 55ba79e

Please sign in to comment.