Skip to content

Commit

Permalink
Merge branch 'maint-0.4.2' into release-0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
teor2345 committed Oct 20, 2019
2 parents 7e66404 + 02e3e8e commit d7c3537
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/feature/hibernate/hibernate.c
Expand Up @@ -815,7 +815,7 @@ hibernate_soft_limit_reached(void)
* We want to stop accepting connections when ALL of the following are true:
* - We expect to use up the remaining bytes in under 3 hours
* - We have used up 95% of our bytes.
* - We have less than 500MBytes of bytes left.
* - We have less than 500MBytes left.
*/
uint64_t soft_limit = (uint64_t) (acct_max * SOFT_LIM_PCT);
if (acct_max > SOFT_LIM_BYTES && acct_max - SOFT_LIM_BYTES > soft_limit) {
Expand Down

0 comments on commit d7c3537

Please sign in to comment.