diff options
author | Andres Freund | 2025-03-29 18:45:42 +0000 |
---|---|---|
committer | Andres Freund | 2025-03-29 18:45:42 +0000 |
commit | 08ccd56ac765496a152ba50cf0ae743c39396f52 (patch) | |
tree | fd044b7ad303e9fb90ef956d9d38206ec193b610 /src/backend/postmaster/postmaster.c | |
parent | 50cb7505b3010736b9a7922e903931534785f3aa (diff) |
aio, bufmgr: Comment fixes/improvements
Some of these comments have been wrong for a while (12f3867f5534), some I
recently introduced (da7226993fd, 55b454d0e14). This includes an update to a
comment in FlushBuffer(), which will be copied in a future commit.
These changes seem big enough to be worth doing in separate commits.
Suggested-by: Noah Misch <[email protected]>
Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'src/backend/postmaster/postmaster.c')
-rw-r--r-- | src/backend/postmaster/postmaster.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index a0c37532d2f..c966c2e83af 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -4401,7 +4401,7 @@ maybe_adjust_io_workers(void) ++io_worker_count; } else - break; /* XXX try again soon? */ + break; /* try again next time */ } /* Too many running? */ |