dubbo-ssl-python 0.9.1__tar.gz → 0.9.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (22) hide show
  1. {dubbo_ssl_python-0.9.1 → dubbo_ssl_python-0.9.2}/PKG-INFO +1 -1
  2. {dubbo_ssl_python-0.9.1 → dubbo_ssl_python-0.9.2}/dubbo_ssl/connection/connections.py +1 -1
  3. {dubbo_ssl_python-0.9.1 → dubbo_ssl_python-0.9.2}/dubbo_ssl_python.egg-info/PKG-INFO +1 -1
  4. {dubbo_ssl_python-0.9.1 → dubbo_ssl_python-0.9.2}/pyproject.toml +1 -1
  5. {dubbo_ssl_python-0.9.1 → dubbo_ssl_python-0.9.2}/LICENSE +0 -0
  6. {dubbo_ssl_python-0.9.1 → dubbo_ssl_python-0.9.2}/README.md +0 -0
  7. {dubbo_ssl_python-0.9.1 → dubbo_ssl_python-0.9.2}/dubbo_ssl/__init__.py +0 -0
  8. {dubbo_ssl_python-0.9.1 → dubbo_ssl_python-0.9.2}/dubbo_ssl/client.py +0 -0
  9. {dubbo_ssl_python-0.9.1 → dubbo_ssl_python-0.9.2}/dubbo_ssl/codec/__init__.py +0 -0
  10. {dubbo_ssl_python-0.9.1 → dubbo_ssl_python-0.9.2}/dubbo_ssl/codec/decoder.py +0 -0
  11. {dubbo_ssl_python-0.9.1 → dubbo_ssl_python-0.9.2}/dubbo_ssl/codec/encoder.py +0 -0
  12. {dubbo_ssl_python-0.9.1 → dubbo_ssl_python-0.9.2}/dubbo_ssl/common/__init__.py +0 -0
  13. {dubbo_ssl_python-0.9.1 → dubbo_ssl_python-0.9.2}/dubbo_ssl/common/constants.py +0 -0
  14. {dubbo_ssl_python-0.9.1 → dubbo_ssl_python-0.9.2}/dubbo_ssl/common/exceptions.py +0 -0
  15. {dubbo_ssl_python-0.9.1 → dubbo_ssl_python-0.9.2}/dubbo_ssl/common/util.py +0 -0
  16. {dubbo_ssl_python-0.9.1 → dubbo_ssl_python-0.9.2}/dubbo_ssl/connection/__init__.py +0 -0
  17. {dubbo_ssl_python-0.9.1 → dubbo_ssl_python-0.9.2}/dubbo_ssl_python.egg-info/SOURCES.txt +0 -0
  18. {dubbo_ssl_python-0.9.1 → dubbo_ssl_python-0.9.2}/dubbo_ssl_python.egg-info/dependency_links.txt +0 -0
  19. {dubbo_ssl_python-0.9.1 → dubbo_ssl_python-0.9.2}/dubbo_ssl_python.egg-info/requires.txt +0 -0
  20. {dubbo_ssl_python-0.9.1 → dubbo_ssl_python-0.9.2}/dubbo_ssl_python.egg-info/top_level.txt +0 -0
  21. {dubbo_ssl_python-0.9.1 → dubbo_ssl_python-0.9.2}/setup.cfg +0 -0
  22. {dubbo_ssl_python-0.9.1 → dubbo_ssl_python-0.9.2}/tests/test_client.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dubbo-ssl-python
3
- Version: 0.9.1
3
+ Version: 0.9.2
4
4
  Summary: Python client for Apache Dubbo RPC protocol, with Hessian2 serialization and SSL/TLS support.
5
5
  Author-email: gigi wang <gigiwgoo@gmail.com>
6
6
  License: Apache License
@@ -82,7 +82,7 @@ class BaseConnectionPool(object):
82
82
  self._conn_lock.acquire()
83
83
  try:
84
84
  if host not in self._connection_pool:
85
- self._new_connection(host)
85
+ self._new_connection(host,verify)
86
86
  finally:
87
87
  self._conn_lock.release()
88
88
  return self._connection_pool[host]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dubbo-ssl-python
3
- Version: 0.9.1
3
+ Version: 0.9.2
4
4
  Summary: Python client for Apache Dubbo RPC protocol, with Hessian2 serialization and SSL/TLS support.
5
5
  Author-email: gigi wang <gigiwgoo@gmail.com>
6
6
  License: Apache License
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "dubbo-ssl-python"
7
- version = "0.9.1"
7
+ version = "0.9.2"
8
8
  authors = [
9
9
  { name="gigi wang", email="gigiwgoo@gmail.com" }
10
10
  ]