Increase PostgreSQL's shutdown timeout to 3 minutes

1 minute is too short, given that the autovacuum launcher often seems
to require exactly 1 minute to shut down.  (This might be a bug
related to autovacuum_naptime.)
This commit is contained in:
Eelco Dolstra 2013-05-07 14:59:08 +02:00
parent 8af81ad66b
commit 6089b5b50c

View File

@ -190,7 +190,7 @@ in
# Give Postgres a decent amount of time to clean up after
# receiving systemd's SIGINT.
TimeoutSec = 60;
TimeoutSec = 120;
};
# Wait for PostgreSQL to be ready to accept connections.