diff options
author | Nick Vatamaniuc <vatamane@apache.org> | 2017-04-28 21:34:55 -0400 |
---|---|---|
committer | Nick Vatamaniuc <vatamane@apache.org> | 2017-04-29 00:30:38 -0400 |
commit | 27d1223cfbe6740b22a426d98344d806c5314ed2 (patch) | |
tree | 807b3c07b388159494f476aaf2bba26df1136543 | |
parent | f7a711d697cd4d9978873bb1846af114458202be (diff) | |
download | couchdb-27d1223cfbe6740b22a426d98344d806c5314ed2.tar.gz |
Disabling replication startup jitter in Windows makefile
A similar change has already been made to *nix Makefile already.
This is for the Javascript integration test suite to not timeout
when running in Travis. We don't run Windows tests in Travis but
this should speed things a bit, and it's nice to keep both in
sync.
Jira: COUCHDB-3324
-rw-r--r-- | Makefile.win | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.win b/Makefile.win index b128bf2bb..e91b19f16 100644 --- a/Makefile.win +++ b/Makefile.win @@ -100,7 +100,7 @@ else @copy test\javascript\tests\lorem*.txt src\fauxton\dist\release\test endif -@rmdir /s/q dev\lib - @python dev\run -n 1 -q --with-admin-party-please python test\javascript\run $(suites) + @python dev\run -n 1 -q --with-admin-party-please -c startup_jitter=0 python test\javascript\run $(suites) .PHONY: check-qs |