From 9441d537b7493f06223b3c0ddb11f0274c5bf586 Mon Sep 17 00:00:00 2001 From: Felix Weber Date: Thu, 31 Jan 2019 15:32:51 +0100 Subject: [PATCH] change timeout in generated nodeconfig.js from 30000 to 30 --- src/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.py b/src/app.py index 020a53b..6ec3ad3 100644 --- a/src/app.py +++ b/src/app.py @@ -165,7 +165,7 @@ def create_node_config(avd_name: str, browser_name: str, appium_host: str, appiu ], 'configuration': { 'cleanUpCycle': 2000, - 'timeout': 30000, + 'timeout': 30, 'proxy': 'org.openqa.grid.selenium.proxy.DefaultRemoteProxy', 'url': 'http://{host}:{port}/wd/hub'.format(host=appium_host, port=appium_port), 'host': appium_host,