Skip to content

Commit

Permalink
feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
wiboris committed Jun 14, 2024
1 parent 7214c37 commit 61d7e5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>This is the Azure.Compute.Batch client library for developing .NET applications with rich experience.</Description>
<Description>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 </Description>
<AssemblyTitle>Azure SDK Code Generation Azure.Compute.Batch for Azure Data Plane</AssemblyTitle>
<Version>1.0.0-beta.1</Version>
<PackageTags>Azure.Compute.Batch</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 61d7e5d

Please sign in to comment.