diff --git a/sdk/batch/Azure.Compute.Batch/src/Azure.Compute.Batch.csproj b/sdk/batch/Azure.Compute.Batch/src/Azure.Compute.Batch.csproj index 44d8016cad956..546e43a7e8200 100644 --- a/sdk/batch/Azure.Compute.Batch/src/Azure.Compute.Batch.csproj +++ b/sdk/batch/Azure.Compute.Batch/src/Azure.Compute.Batch.csproj @@ -1,6 +1,6 @@ - This is the Azure.Compute.Batch client library for developing .NET applications with rich experience. + This is the Azure.Compute.Batch client library for developing .NET applications with rich experience. This client library allows for the creation and management of Batch objects such as Pools, Jobs, and Tasks. For more information about Azure Batch, see https://learn.microsoft.com/azure/batch/batch-technical-overview Azure SDK Code Generation Azure.Compute.Batch for Azure Data Plane 1.0.0-beta.1 Azure.Compute.Batch diff --git a/sdk/batch/Azure.Compute.Batch/src/Custom/BatchNamedKeyCredentialPolicy.cs b/sdk/batch/Azure.Compute.Batch/src/Custom/BatchNamedKeyCredentialPolicy.cs index e1bf5ba97114b..68563baaa5eaa 100644 --- a/sdk/batch/Azure.Compute.Batch/src/Custom/BatchNamedKeyCredentialPolicy.cs +++ b/sdk/batch/Azure.Compute.Batch/src/Custom/BatchNamedKeyCredentialPolicy.cs @@ -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'); stringBuilder.Append('\n'); stringBuilder.Append(ifModifiedSince ?? "").Append('\n'); stringBuilder.Append(ifMatch ?? "").Append('\n');