Switch Python xDS Example Server to Listen on IPV4 Only (#27679) (#27758)

* Switch to IPV4

* Update to all hosts
pull/27759/head
Richard Belleville 3 years ago committed by GitHub
parent b9265ab91d
commit ffc43e05d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      examples/python/xds/server.py

@ -28,7 +28,7 @@ import helloworld_pb2_grpc
_DESCRIPTION = "A general purpose phony server."
_LISTEN_HOST = "[::]"
_LISTEN_HOST = "0.0.0.0"
_THREAD_POOL_SIZE = 256

Loading…
Cancel
Save