Skip to content

Commit

Permalink
pool: Fix compilation failure
Browse files Browse the repository at this point in the history
Fixes a regression introduced in c4d4e4f.

Patch: none
  • Loading branch information
gbehrmann committed Mar 21, 2016
1 parent 8d25340 commit 6ad7cd3
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1230,7 +1230,7 @@ private void updateAccountSize()
configuredPoolSize, used);
}

newSize = Math.max(used, configuredPoolSize.orElse(maxPoolSize);
newSize = Math.max(used, configuredPoolSize.orElse(maxPoolSize));
if (newSize != account.getTotal()) {
LOGGER.info("Adjusting pool size to {}", newSize);
account.setTotal(newSize);
Expand Down

0 comments on commit 6ad7cd3

Please sign in to comment.