]> granicus.if.org Git - pgbouncer/commitdiff
doc: Document that KILL requires RESUME afterwards
authorPeter Eisentraut <peter@eisentraut.org>
Thu, 26 Jul 2018 16:09:21 +0000 (18:09 +0200)
committerPeter Eisentraut <peter@eisentraut.org>
Thu, 26 Jul 2018 16:09:21 +0000 (18:09 +0200)
fixes #310

doc/usage.rst

index a41197f9edda57f965f03b5e7ba667ff1fd8944c..9681748a0edaa747a50e2b9a40e57d523c38e74c 100644 (file)
@@ -575,6 +575,9 @@ at the time of database restart.
 
 If database name is given, only that database will be paused.
 
+New client connections to a paused database will wait until **RESUME**
+is called.
+
 DISABLE db;
 -----------
 
@@ -590,6 +593,9 @@ KILL db;
 
 Immediately drop all client and server connections on given database.
 
+New client connections to a killed database will wait until **RESUME**
+is called.
+
 SUSPEND;
 --------
 
@@ -597,10 +603,13 @@ All socket buffers are flushed and PgBouncer stops listening for data on them.
 The command will not return before all buffers are empty.  To be used at the time
 of PgBouncer online reboot.
 
+New client connections to a suspended database will wait until
+**RESUME** is called.
+
 RESUME [db];
 ------------
 
-Resume work from previous **PAUSE** or **SUSPEND** command.
+Resume work from previous **KILL**, **PAUSE**, or **SUSPEND** command.
 
 SHUTDOWN;
 ---------