Created
July 18, 2019 08:12
-
-
Save Kuniwak/2c149d8e6a6e2f28ff1087711122c539 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- appium-base-driver/lib/express/server.js 2019-07-17 12:37:19.000000000 +0900 | |
+++ appium-base-driver/lib/express/server.js 2019-07-17 12:37:49.000000000 +0900 | |
@@ -49,7 +49,7 @@ async function server (configureRoutes, | |
reject(err); | |
}); | |
httpServer.on('connection', (socket) => { | |
- socket.setTimeout(600 * 1000); // 10 minute timeout | |
+ socket.setTimeout(600 * 10000); // 10 minute timeout | |
socket.on('error', reject); | |
}); | |
configureServer(app, configureRoutes, allowCors); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment