Skip to content

Commit

Permalink
Corrected format string in framing ClientRequestId
Browse files Browse the repository at this point in the history
  • Loading branch information
sriramvu committed Dec 18, 2014
1 parent 14b5be8 commit 0a5ea1c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ public string GenerateAgentAuthenticationHeader(string clientRequestId)
/// <returns>Custom request headers</returns>
public CustomRequestHeaders GetRequestHeaders()
{
this.ClientRequestId = Guid.NewGuid().ToString() + "-" + DateTime.Now.ToString("yyyy-mm-dd HH:mm:ssZ") + "-P";
this.ClientRequestId = Guid.NewGuid().ToString() + "-" + DateTime.Now.ToUniversalTime().ToString("yyyy-MM-dd HH:mm:ssZ") + "-P";

return new CustomRequestHeaders()
{
Expand Down

0 comments on commit 0a5ea1c

Please sign in to comment.