Skip to content

Commit

Permalink
Merge pull request #65 from AsrOneSdk/rijethma-dev
Browse files Browse the repository at this point in the history
Fix Bug 1969426
  • Loading branch information
rijethma committed Mar 23, 2015
2 parents 42c6199 + 58ea7d5 commit 819136c
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)
DateTime currentDateTime = DateTime.Now;
currentDateTime = currentDateTime.AddHours(-1);
cikTokenDetails.NotBeforeTimestamp = TimeZoneInfo.ConvertTimeToUtc(currentDateTime);
cikTokenDetails.NotAfterTimestamp = cikTokenDetails.NotBeforeTimestamp.AddHours(6);
cikTokenDetails.NotAfterTimestamp = cikTokenDetails.NotBeforeTimestamp.AddDays(7);
cikTokenDetails.ClientRequestId = clientRequestId;
cikTokenDetails.Version = new Version(1, 2);
cikTokenDetails.PropertyBag = new Dictionary<string, object>();
Expand Down

0 comments on commit 819136c

Please sign in to comment.