We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7507933 commit 27ca644Copy full SHA for 27ca644
test/scripts/e2e_client_runner.py
@@ -451,12 +451,14 @@ def main():
451
primaryDataDir = os.path.join(netdir, 'Primary')
452
453
# Set EnableDeveloperAPI to true for both nodes
454
+ # and disable the hybrid mode since it is irrelevant for the tests
455
for dataDir in (nodeDataDir, primaryDataDir):
456
configFile = os.path.join(dataDir, 'config.json')
457
with open(configFile, 'r') as f:
458
configOptions = json.load(f)
459
460
configOptions['EnableDeveloperAPI'] = True
461
+ configOptions['EnableP2PHybridMode'] = False
462
463
with open(configFile, 'w') as f:
464
json.dump(configOptions, f)
0 commit comments