Skip to content

Commit

Permalink
fix: re-order cache usage error
Browse files Browse the repository at this point in the history
  • Loading branch information
lct45 committed Mar 18, 2022
1 parent b35606a commit c4a003b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -77,7 +77,7 @@ private void validateCacheBytesUsage(
throw new KsqlException(String.format(
"Configured cache usage (cache.max.bytes.buffering=%d) would put usage over the "
+ "configured limit (%d). Current usage is %d",
configured, usedByRunning, limit
configured, limit, usedByRunning
));
}
}
Expand Down

0 comments on commit c4a003b

Please sign in to comment.