Skip to content

Commit

Permalink
tests: default to interpreted proto unless otherwise specified
Browse files Browse the repository at this point in the history
  • Loading branch information
VladLazar committed Dec 11, 2024
1 parent 9ae980b commit 5d41d80
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test_runner/fixtures/neon_fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,10 @@ def __init__(

self.pageserver_virtual_file_io_mode = pageserver_virtual_file_io_mode

self.pageserver_wal_receiver_protocol = pageserver_wal_receiver_protocol
if pageserver_wal_receiver_protocol is not None:
self.pageserver_wal_receiver_protocol = pageserver_wal_receiver_protocol
else:
self.pageserver_wal_receiver_protocol = PageserverWalReceiverProtocol.INTERPRETED

assert test_name.startswith(
"test_"
Expand Down

0 comments on commit 5d41d80

Please sign in to comment.