mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-11-10 14:24:28 +00:00
Handle I/O timout type errors from autopause mc-monitor call (#2606)
This commit is contained in:
parent
ca393c4fcf
commit
b73fb88b3b
1 changed files with 3 additions and 1 deletions
|
@ -24,7 +24,9 @@ java_clients_connections() {
|
|||
local connections
|
||||
if java_running ; then
|
||||
if ! connections=$(mc-monitor status --host localhost --port "$SERVER_PORT" --show-player-count); then
|
||||
connections=0
|
||||
# consider it a non-zero player count if the ping fails
|
||||
# otherwise a laggy server with players connected could get paused
|
||||
connections=1
|
||||
fi
|
||||
else
|
||||
connections=0
|
||||
|
|
Loading…
Reference in a new issue