Merge "RPC server doc: use the blocking executor"

This commit is contained in:
Jenkins 2014-06-24 15:09:37 +00:00 committed by Gerrit Code Review
commit 68f8857f30
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ A simple example of an RPC server with multiple endpoints might be::
TestEndpoint(),
]
server = messaging.get_rpc_server(transport, target, endpoints,
executor='eventlet')
executor='blocking')
server.start()
server.wait()