Skip to content

Commit 2ae2658

Browse files
committed
CDRIVER-861: cat the MO server.log for more details
1 parent 5cf9f39 commit 2ae2658

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.mci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ c_driver_variables:
100100
mongo_orchestration:
101101
windows: &mongo_orchestration_windows
102102
start_mongo_orchestration: |
103-
trap 'set +o errexit; mongo-orchestration stop;' EXIT
103+
trap 'set +o errexit; cat server.log; mongo-orchestration stop;' EXIT
104104
taskkill.exe /FI "IMAGENAME eq python.exe" /F
105105
taskkill.exe /FI "IMAGENAME eq mongod.exe" /F
106106
fsutil volume diskfree c:
@@ -111,7 +111,7 @@ c_driver_variables:
111111
curl -s http://localhost:8889/
112112
unix: &mongo_orchestration_unix
113113
start_mongo_orchestration: |
114-
trap 'set +o errexit; mongo-orchestration stop;' EXIT
114+
trap 'set +o errexit; cat server.log; mongo-orchestration stop;' EXIT
115115
df -h
116116
echo "Starting Mongo Orchestration..."
117117
echo "{ \"releases\": { \"default\": \"`pwd`/mongodb/bin\" } }" > orchestration.config
@@ -408,6 +408,7 @@ post:
408408
params:
409409
working_dir: "mongo-c-driver"
410410
script: |
411+
cat server.log
411412
mongo-orchestration stop
412413
- command: shell.cleanup
413414

0 commit comments

Comments
 (0)