Skip to content

Commit

Permalink
feat: Changed default OOM retry interval to 1 min
Browse files Browse the repository at this point in the history
  • Loading branch information
jruaux committed Jul 24, 2023
1 parent 1a3a41d commit f5c44d8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class CacheConfig {

public static final DataSize DEFAULT_BUFFER_CAPACITY = DataSize.of(10, Unit.MEGABYTE);

private static final Duration DEFAULT_OOM_RETRY_INTERVAL = new Duration(10, TimeUnit.SECONDS);
private static final Duration DEFAULT_OOM_RETRY_INTERVAL = new Duration(1, TimeUnit.MINUTES);

private DataSize codecBufferCapacity = DEFAULT_BUFFER_CAPACITY;

Expand Down

0 comments on commit f5c44d8

Please sign in to comment.