Skip to content
Snippets Groups Projects
Commit 3865ccd5 authored by Georges Racinet's avatar Georges Racinet
Browse files

grpcio: requiring at least 1.32 for exception uniformity

In cases of socket bind failures, grpcio 1.31.0 returns a zero
port value, whereas 1.32.0 raises RuntimeError.

To avoid making special cases that seem useless, let's just make
explicit that we are using at least 1.32.
parent edda7778
No related branches found
No related tags found
No related merge requests found
......@@ -96,8 +96,9 @@
raise error.Abort(_(
b"Only 'tcp://' URLs are supported for the time being "
b"to define listening addresses (got %s)" % url))
port = server.add_insecure_port(parsed_url.netloc)
if port == 0:
try:
port = server.add_insecure_port(parsed_url.netloc)
except RuntimeError:
raise error.Abort(_(
b"Could not bind to socket for %s. "
b"Please check that this URL is correct." % url))
......
heptapod
protobuf
grpcio
grpcio>=1.32.0
futures; python_version == "2.7"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment