Skip to content

Commit

Permalink
Fixed the bug that file LMT not updated after set metadata.
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonYang-MSFT authored and vinjiang committed Dec 11, 2017
1 parent f465f7a commit 2f825bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Microsoft.WindowsAzure.Storage/src/cloud_file.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ namespace azure { namespace storage {
command->set_preprocess_response([properties](const web::http::http_response& response, const request_result& result, operation_context context)
{
protocol::preprocess_response_void(response, result, context);
properties->update_etag(protocol::file_response_parsers::parse_file_properties(response));
properties->update_etag_and_last_modified(protocol::file_response_parsers::parse_file_properties(response));
});

return core::executor<void>::execute_async(command, modified_options, context);
Expand Down

0 comments on commit 2f825bd

Please sign in to comment.