Skip to content

Commit

Permalink
fix(authz/github): Default cache TTL (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian Heymann authored and Travis Tomsu committed Oct 16, 2017
1 parent bcbdad1 commit 75c950b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ public class GitHubProperties {
@Min(1L)
Integer paginationValue = 100;
@NotNull
Integer membershipCacheTTLSeconds = 60 * 1000;
Integer membershipCacheTTLSeconds = 60 * 60; // 1 hour
}

0 comments on commit 75c950b

Please sign in to comment.