mirror of
https://github.com/clearlinux/WALinuxAgent.git
synced 2026-09-03 20:31:31 +00:00
Fix page blob uploading from python 2.6
This commit is contained in:
@@ -2889,7 +2889,7 @@ def PutPageBlob(url, data):
|
||||
bufSize = pageEnd - start
|
||||
buf = bytearray(bufSize)
|
||||
buf[0 : contentSize] = data[start : end]
|
||||
ret = restutil.HttpPut(url, buf, {
|
||||
ret = restutil.HttpPut(url, buffer(buf), {
|
||||
"x-ms-date" : timestamp,
|
||||
"x-ms-range" : "bytes={0}-{1}".format(start, pageEnd - 1),
|
||||
"x-ms-page-write" : "update",
|
||||
|
||||
Reference in New Issue
Block a user