diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2019-11-13 23:47:48 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2019-11-13 23:47:48 +0000 |
commit | 6ad51591d863a12538fac39d7ac361d0bfeb46f6 (patch) | |
tree | 94d1a95aa5888ca39b1bb52a21de719df862b575 /textproc/py-elasticsearch6/files/patch-elasticsearch-connection-http_urllib3.py | |
parent | Simplify Makefile (diff) |
Fix build with py-urllib 1.25+
- Bump PORTREVISION for package change
PR: 241874
Submitted by: kai
Backport from: https://github.com/elastic/elasticsearch-py/commit/4c531c5cdbd5ba8b59be16c2fa15d5cf81d0a92f
Notes
Notes:
svn path=/head/; revision=517541
Diffstat (limited to 'textproc/py-elasticsearch6/files/patch-elasticsearch-connection-http_urllib3.py')
-rw-r--r-- | textproc/py-elasticsearch6/files/patch-elasticsearch-connection-http_urllib3.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/textproc/py-elasticsearch6/files/patch-elasticsearch-connection-http_urllib3.py b/textproc/py-elasticsearch6/files/patch-elasticsearch-connection-http_urllib3.py new file mode 100644 index 000000000000..a688f1019de2 --- /dev/null +++ b/textproc/py-elasticsearch6/files/patch-elasticsearch-connection-http_urllib3.py @@ -0,0 +1,12 @@ +Backport from: https://github.com/elastic/elasticsearch-py/commit/4c531c5cdbd5ba8b59be16c2fa15d5cf81d0a92f + +--- elasticsearch/connection/http_urllib3.py.orig 2019-05-28 17:59:13 UTC ++++ elasticsearch/connection/http_urllib3.py +@@ -170,6 +170,7 @@ class Urllib3HttpConnection(Connection): + } + ) + else: ++ kw["cert_reqs"] = "CERT_NONE" + warnings.warn( + "Connecting to %s using SSL with verify_certs=False is insecure." + % host |