Skip to content

Commit b52352c

Browse files
committed
fix perf results
1 parent 8bb613c commit b52352c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.evergreen/scripts/configure-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ EOT
7676

7777
# Write the .env file for drivers-tools.
7878
rm -rf $DRIVERS_TOOLS
79-
git clone https://github.com/mongodb-labs/drivers-evergreen-tools.git $DRIVERS_TOOLS
79+
git clone --branch revert-574-ironage/TUNE-74 https://github.com/mongodb-labs/drivers-evergreen-tools.git $DRIVERS_TOOLS
8080

8181
cat <<EOT > ${DRIVERS_TOOLS}/.env
8282
SKIP_LEGACY_SHELL=1

.evergreen/scripts/run_tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@
8181
status="pass",
8282
exit_code=0,
8383
test_file="BenchMarkTests",
84-
start=start_time.timestamp(),
85-
end=end_time.timestamp(),
84+
start=int(start_time.timestamp()),
85+
end=int(end_time.timestamp()),
8686
elapsed=elapsed_secs,
8787
)
8888
report = dict(failures=0, results=results)

0 commit comments

Comments
 (0)