aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Bossart <nathan@postgresql.org>2024-08-20 13:43:20 -0500
committerNathan Bossart <nathan@postgresql.org>2024-08-20 13:43:20 -0500
commit5d9170697e4e6dd282b015890bc29baf978c6cb5 (patch)
tree5ee22c05ea576a7ad7ef707d6897c28ba06955ab
parente51160fa0bab7203e37094fbb0349b0c324b09e7 (diff)
downloadpostgresql-5d9170697e4e6dd282b015890bc29baf978c6cb5.tar.gz
postgresql-5d9170697e4e6dd282b015890bc29baf978c6cb5.zip
Fix a couple of wait event descriptions.
The descriptions for ProcArrayGroupUpdate and XactGroupUpdate claim that these events mean we are waiting for the group leader "at end of a parallel operation," but neither pertains to parallel operations. This commit reverts these descriptions to their wording before commit 3048898e73, i.e., "end of a parallel operation" is changed to "transaction end." Author: Sameer Kumar Reviewed-by: Amit Kapila Discussion: https://postgr.es/m/CAGPeHmh6UMrKQHKCmX%2B5vV5TH9P%3DKw9en3k68qEem6J%3DyrZPUA%40mail.gmail.com Backpatch-through: 13
-rw-r--r--doc/src/sgml/monitoring.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml
index 84e65002ff3..bad1f445e42 100644
--- a/doc/src/sgml/monitoring.sgml
+++ b/doc/src/sgml/monitoring.sgml
@@ -1770,7 +1770,7 @@ postgres 27093 0.0 0.0 30096 2752 ? Ss 11:34 0:00 postgres: ser
<row>
<entry><literal>ProcArrayGroupUpdate</literal></entry>
<entry>Waiting for the group leader to clear the transaction ID at
- end of a parallel operation.</entry>
+ transaction end.</entry>
</row>
<row>
<entry><literal>ProcSignalBarrier</literal></entry>
@@ -1837,7 +1837,7 @@ postgres 27093 0.0 0.0 30096 2752 ? Ss 11:34 0:00 postgres: ser
<row>
<entry><literal>XactGroupUpdate</literal></entry>
<entry>Waiting for the group leader to update transaction status at
- end of a parallel operation.</entry>
+ transaction end.</entry>
</row>
</tbody>
</tgroup>