Skip to content

Commit

Permalink
Update src/main/java/org/kohsuke/github/GitHubClient.java
Browse files Browse the repository at this point in the history
Co-authored-by: Fabien Thouny <[email protected]>
  • Loading branch information
bitwiseman and KeepItSimpleStupid authored Nov 19, 2023
1 parent 60a3fc6 commit 744911f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/kohsuke/github/GitHubClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class GitHubClient {
private static final int minRetryInterval = Math.max(DEFAULT_MINIMUM_RETRY_MILLIS,
Integer.getInteger(GitHubClient.class.getName() + ".minRetryInterval", DEFAULT_MINIMUM_RETRY_MILLIS));
private static final int maxRetryInterval = Math.max(DEFAULT_MAXIMUM_RETRY_MILLIS,
Integer.getInteger(GitHubClient.class.getName() + ".minRetryInterval", DEFAULT_MINIMUM_RETRY_MILLIS));
Integer.getInteger(GitHubClient.class.getName() + ".maxRetryInterval", DEFAULT_MAXIMUM_RETRY_MILLIS));

// Cache of myself object.
private final String apiUrl;
Expand Down

0 comments on commit 744911f

Please sign in to comment.