Skip to content

Commit

Permalink
Revert "FPM: Downgrade occasional "failed to acquire scoreboard" warn…
Browse files Browse the repository at this point in the history
…ing"

This reverts commit 3040f75.
  • Loading branch information
devnexen committed Jul 18, 2022
1 parent 3040f75 commit 2a5b2cc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions NEWS
Expand Up @@ -22,8 +22,6 @@ PHP NEWS
- FPM:
. Fixed zlog message prepend, free on incorrect address. (Heiko Weber)
. Fixed possible double free on configuration loading failure. (Heiko Weber).
. Fixed on fpm scoreboard occasional warning on acquisition failure.
(Felix Wiedemann)

- GD:
. Fixed bug GH-8848 (imagecopyresized() error refers to the wrong argument).
Expand Down
2 changes: 1 addition & 1 deletion sapi/fpm/fpm/fpm_request.c
Expand Up @@ -231,7 +231,7 @@ void fpm_request_check_timed_out(struct fpm_child_s *child, struct timeval *now,

proc_p = fpm_scoreboard_proc_acquire(child->wp->scoreboard, child->scoreboard_i, 1);
if (!proc_p) {
zlog(ZLOG_NOTICE, "failed to acquire scoreboard");
zlog(ZLOG_WARNING, "failed to acquire scoreboard");
return;
}

Expand Down

0 comments on commit 2a5b2cc

Please sign in to comment.