Skip to content

Commit 27ca644

Browse files
committed
fix e2e subs tests
1 parent 7507933 commit 27ca644

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/scripts/e2e_client_runner.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -451,12 +451,14 @@ def main():
451451
primaryDataDir = os.path.join(netdir, 'Primary')
452452

453453
# Set EnableDeveloperAPI to true for both nodes
454+
# and disable the hybrid mode since it is irrelevant for the tests
454455
for dataDir in (nodeDataDir, primaryDataDir):
455456
configFile = os.path.join(dataDir, 'config.json')
456457
with open(configFile, 'r') as f:
457458
configOptions = json.load(f)
458459

459460
configOptions['EnableDeveloperAPI'] = True
461+
configOptions['EnableP2PHybridMode'] = False
460462

461463
with open(configFile, 'w') as f:
462464
json.dump(configOptions, f)

0 commit comments

Comments
 (0)