File tree Expand file tree Collapse file tree
src/command_modules/azure-cli-storage
azure/cli/command_modules/storage/operations Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33 Release History
44===============
55
6+ 2.0.30
7+ ++++++
8+ * Fix issue of upload file with size between 195GB and 200GB
9+
10+ 2.0.29
11+ ++++++
12+ * Minor fixes.
13+
6142.0.28
715++++++
816* Fix problems with append blob uploads ignoring condition parameters.
Original file line number Diff line number Diff line change @@ -235,8 +235,8 @@ def upload_append_blob():
235235 return client .append_blob_from_path (** append_blob_args )
236236
237237 def upload_block_blob ():
238- # increase the block size to 100MB when the file is larger than 200GB
239- if os .path .isfile (file_path ) and os .stat (file_path ).st_size > 200 * 1024 * 1024 * 1024 :
238+ # increase the block size to 100MB when the block list will contain more than 50,000 blocks
239+ if os .path .isfile (file_path ) and os .stat (file_path ).st_size > 50000 * 4 * 1024 * 1024 :
240240 client .MAX_BLOCK_SIZE = 100 * 1024 * 1024
241241 client .MAX_SINGLE_PUT_SIZE = 256 * 1024 * 1024
242242
Original file line number Diff line number Diff line change 1414 logger .warn ("Wheel is not available, disabling bdist_wheel hook" )
1515 cmdclass = {}
1616
17- VERSION = "2.0.28 "
17+ VERSION = "2.0.30 "
1818CLASSIFIERS = [
1919 'Development Status :: 5 - Production/Stable' ,
2020 'Intended Audience :: Developers' ,
You can’t perform that action at this time.
0 commit comments