Skip to content

Commit 6183408

Browse files
committed
Merge branch 'PHP-5.5' into PHP-5.6
2 parents 808e562 + 837eeef commit 6183408

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/opcache/ZendAccelerator.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ static inline void kill_all_lockers(struct flock *mem_usage_check)
582582
ZCSG(force_restart_time) = 0;
583583
while (mem_usage_check->l_pid > 0) {
584584
while (tries--) {
585-
zend_accel_error(ACCEL_LOG_INFO, "Killed locker %d", mem_usage_check->l_pid);
585+
zend_accel_error(ACCEL_LOG_ERROR, "Killed locker %d", mem_usage_check->l_pid);
586586
if (kill(mem_usage_check->l_pid, SIGKILL)) {
587587
break;
588588
}
@@ -595,7 +595,7 @@ static inline void kill_all_lockers(struct flock *mem_usage_check)
595595
usleep(10000);
596596
}
597597
if (!tries) {
598-
zend_accel_error(ACCEL_LOG_INFO, "Can't kill %d after 20 tries!", mem_usage_check->l_pid);
598+
zend_accel_error(ACCEL_LOG_ERROR, "Can't kill %d after 20 tries!", mem_usage_check->l_pid);
599599
ZCSG(force_restart_time) = time(NULL); /* restore forced restart request */
600600
}
601601

0 commit comments

Comments
 (0)