@@ -96,7 +96,7 @@ cxx_driver_variables:
9696 cd ..
9797 echo "Starting Mongo Orchestration..."
9898 echo "{ \"releases\": { \"default\": \"c:\\\\mongodb\\\\bin\" }, \"last_updated\": \"2014-08-29 20:57:00.000000\" }" > orchestration.config
99- mongo-orchestration -f orchestration.config -e default -s wsgiref start
99+ mongo-orchestration -f orchestration.config -e default -s wsgiref start --socket-timeout-ms=60000
100100 linux : &mongo_orchestration_linux
101101 # # we are going to manually install mongo-orchestration for now on Linux until it is stable enough that we don't always to install from HEAD
102102 start_mongo_orchestration : |
@@ -113,13 +113,13 @@ cxx_driver_variables:
113113 cd ..
114114 echo "Starting Mongo Orchestration..."
115115 echo "{ \"releases\": { \"default\": \"`pwd`/mongodb/bin\" }, \"last_updated\": \"2014-08-29 20:57:00.000000\" }" > orchestration.config
116- TMPDIR=/data/db mongo-orchestration -f orchestration.config -e default start
116+ TMPDIR=/data/db mongo-orchestration -f orchestration.config -e default start --socket-timeout-ms=60000
117117 osx : &mongo_orchestration_osx
118118 start_mongo_orchestration : |
119119 echo "Starting Mongo Orchestration..."
120120 trap 'set +o errexit; /usr/local/bin/mongo-orchestration stop;' EXIT
121121 echo "{ \"releases\": { \"default\": \"`pwd`/mongodb/bin\" }, \"last_updated\": \"2014-08-29 20:57:00.000000\" }" > orchestration.config
122- TMPDIR=/data/db /usr/local/bin/mongo-orchestration -f orchestration.config -e default start
122+ TMPDIR=/data/db /usr/local/bin/mongo-orchestration -f orchestration.config -e default start --socket-timeout-ms=60000
123123
124124# # Other os-specific attributes, grouped by OS
125125
0 commit comments