We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5b8f95 commit 8b78a36Copy full SHA for 8b78a36
py_eureka_client/__init__.py
@@ -22,7 +22,7 @@
22
SOFTWARE.
23
"""
24
25
-version = "0.11.9"
+version = "0.11.10"
26
27
28
Status of instances
py_eureka_client/http_client.py
@@ -27,19 +27,12 @@
import gzip
import urllib.request
29
import urllib.error
30
+from urllib.error import HTTPError, URLError
31
32
from typing import Union
33
from urllib.parse import unquote
34
35
-class HTTPError(urllib.error.HTTPError):
36
- pass
37
-
38
39
-class URLError(urllib.error.URLError):
40
41
42
43
44
Default encoding
45
0 commit comments