Skip to content

Commit

Permalink
Attempt to fix Azure backup integration tests
Browse files Browse the repository at this point in the history
test_backup_restore_azure_blob_storage
  • Loading branch information
Enmk committed Oct 22, 2024
1 parent 1d1418f commit 78ad8a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Backups/BackupIO_AzureBlobStorage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ void BackupWriterAzureBlobStorage::copyFile(const String & destination, const St

void BackupWriterAzureBlobStorage::copyDataToFile(const String & path_in_backup, const CreateReadBufferFunction & create_read_buffer, UInt64 start_pos, UInt64 length)
{
copyDataToAzureBlobStorageFile(create_read_buffer, start_pos, length, client, configuration.container, fs::path(configuration.blob_path) / path_in_backup, settings,
copyDataToAzureBlobStorageFile(create_read_buffer, start_pos, length, client, configuration.container, path_in_backup, settings,
threadPoolCallbackRunnerUnsafe<void>(getBackupsIOThreadPool().get(), "BackupWRAzure"));
}

Expand Down

0 comments on commit 78ad8a8

Please sign in to comment.