From ab0198b513fdcaba8acf536b7f20947fbebb794d Mon Sep 17 00:00:00 2001 From: Ameya Shenoy Date: Wed, 2 May 2018 17:30:35 +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 d95f38b8f1..c5d0a44a5e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,6 +34,7 @@ before_script: - bench reinstall --yes - bench setup-help - bench scheduler disable + - sed -i 's/9000/9001/g' sites/common_site_config.json - bench start & - sleep 10