diff options
author | drebs <drebs@riseup.net> | 2017-11-19 15:49:31 -0200 |
---|---|---|
committer | drebs <drebs@riseup.net> | 2017-11-19 15:49:35 -0200 |
commit | 6493d072c189a522aef549313e765c68f004ab09 (patch) | |
tree | e7e6a2e4864b67853d33a3fb2812c30078e81200 | |
parent | 17d2c242be5b3a1b19495694bf070d9fd1f1f804 (diff) |
[benchmarks] pin elasticsearch-py version to avoid TLS certs bug
elasticsearch-py 6.0.0 introduced a TLS cert verification bug:
https://github.com/elastic/elasticsearch-py/issues/669
That bug affects our benchmarks ci pipeline:
https://0xacab.org/leap/soledad/issues/8993#note_128667
This commit only pins the version of elasticsearch-py used by
benchamarks to avoid that bug. This pinning should probably be removed
when the next version of elasticsearch-py is released.
Closes #8993.
-rw-r--r-- | tox.ini | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ deps = # used by benchmarks psutil pytest-benchmark - elasticsearch + elasticsearch==5.5.1 certifi # used by e2e tests srp |