-
Notifications
You must be signed in to change notification settings - Fork 132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix the issue when ranges may be losted when copying page blob/file with ServiceSideSyncCopy. #243
Conversation
…ith ServiceSideSyncCopy. Add cases to test transferring large blob/file
@@ -26,7 +26,7 @@ | |||
</PropertyGroup> | |||
|
|||
<ItemGroup> | |||
<Compile Include="..\..\lib\**\*.cs;..\..\tools\AssemblyInfo\*.cs" Exclude="bin\**;obj\**;**\*.xproj;packages\**" /> | |||
<Compile Include="..\..\lib\**\*.cs;..\..\tools\AssemblyInfo\*.cs" Exclude="bin\**;obj\**;**\*.xproj;packages\**;..\..\lib\obj\**" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add Jason to review before official release
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Of cause, I've also sent CR to Jason.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Discussed offline, ....\lib\obj** represents temporary .cs files generated during build .net version dmlib. It is fine to exclude for this project for now.
Later, we should change the Include method to filename.cs instead of *.cs.
…ServiceSideSyncCopy between pageblob/file.
Fix the issue when ranges may be losted when copying page blob/file with ServiceSideSyncCopy.
Fix a build issue which is caused by compiling a build intermediate file. // This is to exclude the build intermediate cs file to avoid build failure.