diff options
author | Thomas Munro <tmunro@postgresql.org> | 2021-02-22 14:37:28 +1300 |
---|---|---|
committer | Thomas Munro <tmunro@postgresql.org> | 2021-02-22 14:42:15 +1300 |
commit | db8374d804f2dd35a0f934984d1d3686cc71f545 (patch) | |
tree | 47902a141b16d4d61272322e90e82aae94af5bc3 /src/backend | |
parent | 190c79884aae540c92f017701726ed69265e2dab (diff) | |
download | postgresql-db8374d804f2dd35a0f934984d1d3686cc71f545.tar.gz postgresql-db8374d804f2dd35a0f934984d1d3686cc71f545.zip |
Remove outdated reference to RAID spindles.
Commit b09ff536 left behind some outdated advice in the long_desc field
of the GUC "effective_io_concurrency". Remove it.
Back-patch to 13.
Reported-by: Andrew Gierth <andrew@tao11.riddles.org.uk>
Reviewed-by: Julien Rouhaud <rjuju123@gmail.com>
Discussion: https://postgr.es/m/CA%2BhUKGJyyWqFBxL9gEj-qtjBThGjhAOBE8GBnF8MUJOJ3vrfag%40mail.gmail.com
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/utils/misc/guc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index 00018abb7d1..260ec7b97e9 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -2951,7 +2951,7 @@ static struct config_int ConfigureNamesInt[] = PGC_USERSET, RESOURCES_ASYNCHRONOUS, gettext_noop("Number of simultaneous requests that can be handled efficiently by the disk subsystem."), - gettext_noop("For RAID arrays, this should be approximately the number of drive spindles in the array."), + NULL, GUC_EXPLAIN }, &effective_io_concurrency, |