File tree Expand file tree Collapse file tree
application/src/main/java/org/togetherjava/tjbot/features/rss Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -115,8 +115,6 @@ IF THE DISCLAIMER AND DAMAGE WAIVER MENTIONED IN SECTION 5. AND SECTION 6. CANNO
115115
116116### Us
117117
118- Name: Daniel Tischner (aka Zabuzard, acting on behalf of Together Java)
119-
120118Organization: https://github.com/Together-Java
121119
122120Contact: https://discord.com/invite/XXFUXzK
Original file line number Diff line number Diff line change @@ -456,8 +456,9 @@ private long calculateWaitHours(int failureCount) {
456456
457457 private boolean isBackingOff (String url ) {
458458 FailureState state = circuitBreaker .getIfPresent (url );
459- if (state == null )
459+ if (state == null ) {
460460 return false ;
461+ }
461462
462463 long waitHours = calculateWaitHours (state .count ());
463464 Instant retryAt = state .lastFailure ().plus (waitHours , ChronoUnit .HOURS );
You can’t perform that action at this time.
0 commit comments