Skip to content

Commit

Permalink
Increase shared_buffers to prevent no unpinned buffers available error
Browse files Browse the repository at this point in the history
  • Loading branch information
Konstantin Knizhnik committed Oct 31, 2024
1 parent 1d59ccb commit a6d1cd3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test_runner/regress/test_physical_replication.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,12 @@ def test_physical_replication_config_mismatch_too_many_known_xids(neon_simple_en
"""
env = neon_simple_env
primary = env.endpoints.create_start(
branch_name="main", endpoint_id="primary", config_lines=["max_connections=1000"]
branch_name="main",
endpoint_id="primary",
config_lines=[
"max_connections=1000",
"shared_buffers=128MB", # prevent "no unpinned buffers available" error
],
)
secondary = env.endpoints.new_replica_start(
origin=primary,
Expand Down

0 comments on commit a6d1cd3

Please sign in to comment.