From 8dc87a3a3c711a1b1d66f1a288f35d56fae21f56 Mon Sep 17 00:00:00 2001 From: Zhaopeng XUAN Date: Wed, 13 Jan 2021 12:39:36 +0100 Subject: [PATCH] Bug fix: maxSession in appium config should be 1 --- src/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.py b/src/app.py index d05f7bc..c1f8e50 100644 --- a/src/app.py +++ b/src/app.py @@ -191,7 +191,7 @@ def create_node_config(avd_name: str, browser_name: str, appium_host: str, appiu 'url': 'http://{host}:{port}/wd/hub'.format(host=appium_host, port=appium_port), 'host': appium_host, 'port': appium_port, - 'maxSession': 6, + 'maxSession': 1, 'register': True, 'registerCycle': 5000, 'hubHost': selenium_host,