fix bug in blob tags (#653)
This commit is contained in:
parent
9c9b2c242a
commit
95f4034490
@ -30,7 +30,7 @@ namespace Azure { namespace Storage { namespace Blobs {
|
||||
* https://docs.microsoft.com/en-us/rest/api/storageservices/specifying-conditional-headers-for-blob-service-operations#tags-predicate-syntax
|
||||
* for the format of SQL statements.
|
||||
*/
|
||||
std::string TagConditions;
|
||||
Azure::Core::Nullable<std::string> TagConditions;
|
||||
};
|
||||
|
||||
/**
|
||||
|
||||
@ -885,7 +885,7 @@ namespace Azure { namespace Storage { namespace Test {
|
||||
options.SourceConditions.TagConditions = successWhereExpression;
|
||||
EXPECT_NO_THROW(blobClient2.StartCopyFromUri(uri, options));
|
||||
|
||||
options.SourceConditions.TagConditions.clear();
|
||||
options.SourceConditions.TagConditions.Reset();
|
||||
blobClient2.SetTags(tags);
|
||||
|
||||
options.AccessConditions.TagConditions = failWhereExpression;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user