Skip to content

Commit

Permalink
Update StorageAzureBlob.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-milovidov authored Mar 23, 2024
1 parent 2736b4e commit aeefba5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Storages/StorageAzureBlob.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,8 @@ AzureClientPtr StorageAzureBlob::createClient(StorageAzureBlob::Configuration co
try
{
result->CreateIfNotExists();
} catch (const Azure::Storage::StorageException & e)
}
catch (const Azure::Storage::StorageException & e)
{
if (!(e.StatusCode == Azure::Core::Http::HttpStatusCode::Conflict
&& e.ReasonPhrase == "The specified container already exists."))
Expand Down

0 comments on commit aeefba5

Please sign in to comment.