Skip to content

Commit 0bd0d40

Browse files
committed
Update
1 parent 28b00af commit 0bd0d40

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/CLU/Sync/Upload/BlobSynchronizer.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ public bool Synchronize()
6161
{
6262
b.Properties.ContentMD5 = md5HashOfDataChunk;
6363
// TODO: CLU
64-
b.WritePagesAsync(stream, dwr.Range.StartIndex, md5HashOfDataChunk).Wait();
64+
Program.SyncOutput.WriteVerboseWithTimestamp(
65+
string.Format("Range Start Index = {0}, ContentMD5 = {1}", dwr.Range.StartIndex, md5HashOfDataChunk));
66+
b.WritePagesAsync(stream, dwr.Range.StartIndex, null).Wait();
6567
//b.WritePages(stream, dwr.Range.StartIndex);
6668
}
6769
}

0 commit comments

Comments
 (0)