-
Notifications
You must be signed in to change notification settings - Fork 458
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Stop changing the value of neon.extension_server_port at runtime (#9972)
On reconfigure, we no longer passed a port for the extension server which caused us to not write out the neon.extension_server_port line. Thus, Postgres thought we were setting the port to the default value of 0. PGC_POSTMASTER GUCs cannot be set at runtime, which causes the following log messages: > LOG: parameter "neon.extension_server_port" cannot be changed without restarting the server > LOG: configuration file "/var/db/postgres/compute/pgdata/postgresql.conf" contains errors; unaffected changes were applied Fixes: #9945 Signed-off-by: Tristan Partin <tristan@neon.tech>
- Loading branch information
1 parent
2dc238e
commit d8ebd33
Showing
3 changed files
with
11 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
d8ebd33
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
7144 tests run: 6826 passed, 0 failed, 318 skipped (full report)
Flaky tests (6)
Postgres 17
test_deletion_queue_recovery[validate-lose]
: release-arm64test_create_churn_during_restart
: debug-x86-64Postgres 15
test_prefetch[None]
: release-x86-64test_prefetch[4]
: release-arm64Postgres 14
test_prefetch[None]
: release-x86-64, release-arm64Code coverage* (full report)
functions
:30.7% (8262 of 26881 functions)
lines
:47.8% (65200 of 136463 lines)
* collected from Rust tests only
d8ebd33 at 2024-12-02T19:53:42.114Z :recycle: