-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,7 +98,7 @@ private string BuildStringToSign(HttpMessage message) | |
stringBuilder.Append(contentLengthString == "0" ? "" : contentLengthString ?? "").Append('\n'); | ||
stringBuilder.Append(contentMD5 ?? "");// todo: fix base 64 VALUE | ||
stringBuilder.Append('\n'); | ||
stringBuilder.Append(contentType ?? "").Append('\n'); // Empty date because ocp-date is expected (as per web page above)) | ||
stringBuilder.Append(contentType ?? "").Append('\n'); | ||
Check failure on line 101 in sdk/batch/Azure.Compute.Batch/src/Custom/BatchNamedKeyCredentialPolicy.cs Azure Pipelines / net - batch - ci (Build Test Ubuntu2004_NET70_ProjectRef_Release)sdk/batch/Azure.Compute.Batch/src/Custom/BatchNamedKeyCredentialPolicy.cs#L101
Check failure on line 101 in sdk/batch/Azure.Compute.Batch/src/Custom/BatchNamedKeyCredentialPolicy.cs Azure Pipelines / net - batch - ci (Build Test Ubuntu2004_NET60_PackageRef_Debug)sdk/batch/Azure.Compute.Batch/src/Custom/BatchNamedKeyCredentialPolicy.cs#L101
Check failure on line 101 in sdk/batch/Azure.Compute.Batch/src/Custom/BatchNamedKeyCredentialPolicy.cs Azure Pipelines / net - batch - ci (Build Analyze)sdk/batch/Azure.Compute.Batch/src/Custom/BatchNamedKeyCredentialPolicy.cs#L101
Check failure on line 101 in sdk/batch/Azure.Compute.Batch/src/Custom/BatchNamedKeyCredentialPolicy.cs Azure Pipelines / net - batch - ci (Build Analyze)sdk/batch/Azure.Compute.Batch/src/Custom/BatchNamedKeyCredentialPolicy.cs#L101
Check failure on line 101 in sdk/batch/Azure.Compute.Batch/src/Custom/BatchNamedKeyCredentialPolicy.cs Azure Pipelines / net - batch - ci (Build Test MacOS11_NET70_ProjectRef_Release)sdk/batch/Azure.Compute.Batch/src/Custom/BatchNamedKeyCredentialPolicy.cs#L101
Check failure on line 101 in sdk/batch/Azure.Compute.Batch/src/Custom/BatchNamedKeyCredentialPolicy.cs Azure Pipelines / net - batch - ci (Build Test MacOS11_NET60_PackageRef_Debug)sdk/batch/Azure.Compute.Batch/src/Custom/BatchNamedKeyCredentialPolicy.cs#L101
Check failure on line 101 in sdk/batch/Azure.Compute.Batch/src/Custom/BatchNamedKeyCredentialPolicy.cs Azure Pipelines / net - batch - cisdk/batch/Azure.Compute.Batch/src/Custom/BatchNamedKeyCredentialPolicy.cs#L101
|
||
stringBuilder.Append('\n'); | ||
stringBuilder.Append(ifModifiedSince ?? "").Append('\n'); | ||
stringBuilder.Append(ifMatch ?? "").Append('\n'); | ||
|