PL-6101 FileStorage implementation for clouds

#PL-6101
This commit is contained in:
Eugeny Degtyarjov 2015-10-07 07:30:29 +00:00
parent 069b647bb9
commit e245654997

View File

@ -89,7 +89,7 @@ public class AmazonS3FileStorage implements FileStorageAPI {
// get the request stream and start writing the user data as chunks, as outlined
// above;
byte[] buffer = new byte[4096];
byte[] buffer = new byte[amazonConfiguration.getChunkSize()];
DataOutputStream outputStream = new DataOutputStream(connection.getOutputStream());
int bytesRead;