Skip to content

Commit

Permalink
Increase max connection for replica to prevent test flukyness (#10306)
Browse files Browse the repository at this point in the history
## Problem

See #10167
Too small number of `max_connections` (2) can cause failures of
test_physical_replication_config_mismatch_too_many_known_xids test

## Summary of changes

Increase `max_connections` to 5

Co-authored-by: Konstantin Knizhnik <knizhnik@neon.tech>
  • Loading branch information
knizhnik and Konstantin Knizhnik authored Jan 13, 2025
1 parent fd1368d commit 1783501
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_runner/regress/test_physical_replication.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def test_physical_replication_config_mismatch_too_many_known_xids(neon_simple_en
origin=primary,
endpoint_id="secondary",
config_lines=[
"max_connections=2",
"max_connections=5",
"autovacuum_max_workers=1",
"max_worker_processes=5",
"max_wal_senders=1",
Expand Down

1 comment on commit 1783501

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

7455 tests run: 7074 passed, 0 failed, 381 skipped (full report)


Flaky tests (1)

Postgres 17

Code coverage* (full report)

  • functions: 32.7% (8078 of 24696 functions)
  • lines: 47.9% (67606 of 141088 lines)

* collected from Rust tests only


The comment gets automatically updated with the latest test results
1783501 at 2025-01-13T22:37:05.562Z :recycle:

Please sign in to comment.