Fix default values for wal storage and archiving (#269)

pull/284/head
mazano 2020-08-25 08:53:45 +02:00 zatwierdzone przez GitHub
rodzic 18f99bc8d6
commit 444f19e13d
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -100,7 +100,7 @@ if [ -z "${PG_MAX_WAL_SENDERS}" ]; then
PG_MAX_WAL_SENDERS=10
fi
if [ -z "${PG_WAL_KEEP_SEGMENTS}" ]; then
PG_WAL_KEEP_SEGMENTS=250
PG_WAL_KEEP_SEGMENTS=20
fi
if [ -z "${IP_LIST}" ]; then
@ -145,7 +145,7 @@ if [ -z "${MIN_WAL_SIZE}" ]; then
fi
if [ -z "${WAL_SEGSIZE}" ]; then
WAL_SEGSIZE=1024
WAL_SEGSIZE=256
fi
if [ -z "${CHECK_POINT_TIMEOUT}" ]; then