1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-19 15:49:24 +03:00

pg_ctl: change default shutdown mode from 'smart' to 'fast'

Retain the order of the options in the documentation.
This commit is contained in:
Bruce Momjian
2015-03-31 11:46:27 -04:00
parent 9d9991c84e
commit 0badb069bc
2 changed files with 4 additions and 4 deletions

View File

@@ -79,7 +79,7 @@ static bool do_wait = false;
static bool wait_set = false;
static int wait_seconds = DEFAULT_WAIT;
static bool silent_mode = false;
static ShutdownMode shutdown_mode = SMART_MODE;
static ShutdownMode shutdown_mode = FAST_MODE;
static int sig = SIGTERM; /* default */
static CtlCommand ctl_command = NO_COMMAND;
static char *pg_data = NULL;