We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcdf827 commit e938f8eCopy full SHA for e938f8e
env/integtest_pg_conn.py
@@ -123,22 +123,6 @@ def test_start_with_changes(self) -> None:
123
pg_conn.restore_pristine_snapshot()
124
pg_conn.restart_postgres()
125
126
- # Test
127
- initial_sysknobs = pg_conn.get_system_knobs()
128
- self.assertEqual(initial_sysknobs["wal_buffers"], "4MB")
129
- pg_conn.restart_with_changes({"wal_buffers": "8MB"})
130
- new_sysknobs = pg_conn.get_system_knobs()
131
- self.assertEqual(new_sysknobs["wal_buffers"], "8MB")
132
-
133
- # Cleanup
134
- pg_conn.shutdown_postgres()
135
136
- def test_multiple_start_with_changes(self) -> None:
137
- # Setup
138
- pg_conn = self.create_pg_conn()
139
- pg_conn.restore_pristine_snapshot()
140
- pg_conn.restart_postgres()
141
142
# Test
143
initial_sysknobs = pg_conn.get_system_knobs()
144
0 commit comments