Skip to content

Commit

Permalink
Fix Bug 1969426 : [LiveSite] Failback is taking 10 hours 25mins and t…
Browse files Browse the repository at this point in the history
…oken is getting expired
  • Loading branch information
rijethma committed Mar 19, 2015
1 parent 42c6199 commit 58ea7d5
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 58ea7d5

Please sign in to comment.