Skip to content

Commit c3242bf

Browse files
committed
minor: give m-o some time to start up before starting the build
1 parent c1a0d82 commit c3242bf

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.mci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ cxx_driver_variables:
106106
echo "Starting Mongo Orchestration..."
107107
echo "{ \"releases\": { \"default\": \"c:\\\\mongodb\\\\bin\" }, \"last_updated\": \"2014-08-29 20:57:00.000000\" }" > orchestration.config
108108
mongo-orchestration -f orchestration.config -e default -s wsgiref start --socket-timeout-ms=60000
109+
sleep 15
109110
linux: &mongo_orchestration_linux
110111
## 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
111112
start_mongo_orchestration: |
@@ -114,12 +115,14 @@ cxx_driver_variables:
114115
echo "Starting Mongo Orchestration..."
115116
echo "{ \"releases\": { \"default\": \"`pwd`/mongodb/bin\" }, \"last_updated\": \"2014-08-29 20:57:00.000000\" }" > orchestration.config
116117
TMPDIR=/data/db mongo-orchestration -f orchestration.config -e default start --socket-timeout-ms=60000
118+
sleep 15
117119
osx: &mongo_orchestration_osx
118120
start_mongo_orchestration: |
119121
echo "Starting Mongo Orchestration..."
120122
trap 'set +o errexit; /usr/local/bin/mongo-orchestration stop;' EXIT
121123
echo "{ \"releases\": { \"default\": \"`pwd`/mongodb/bin\" }, \"last_updated\": \"2014-08-29 20:57:00.000000\" }" > orchestration.config
122124
TMPDIR=/data/db /usr/local/bin/mongo-orchestration -f orchestration.config -e default start # --socket-timeout-ms=60000 <- uncomment when OSX builders get new MO
125+
sleep 15
123126
124127
## Other os-specific attributes, grouped by OS
125128

0 commit comments

Comments
 (0)