From bb7c5ac0f8f4769f57e9e08612beca54d663dcc9 Mon Sep 17 00:00:00 2001 From: Ameya Shenoy Date: Wed, 2 May 2018 17:32:39 +0530 Subject: [PATCH] dark magic to revive travis It seems that some process inside travis is using port no 9000. Hence adding this line in the travis.yml to change common_site_config.json and use port no 9001 for socket_io --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index a2c0e47349..448cd40a39 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,6 +33,7 @@ before_script: - bench reinstall --yes - bench build - bench scheduler disable + - sed -i 's/9000/9001/g' sites/common_site_config.json - bench start & - sleep 10