Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
zhztheplayer committed Dec 17, 2024
1 parent ec06a8b commit 54d0517
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class RetryOnOomMemoryTarget implements TreeMemoryTarget {
public long borrow(long size) {
long granted = target.borrow(size);
if (granted < size) {
LOGGER.info("Granted size {} is smaller than requested size {}, retrying...", granted, size);
LOGGER.info("Granted size {} is less than requested size {}, retrying...", granted, size);
final long remaining = size - granted;
// Invoke the `onRetry` callback, then retry borrowing.
// It's usually expected to run extra spilling logics in
Expand Down

0 comments on commit 54d0517

Please sign in to comment.