From 57bf0e43f065bc914093aa5b1676e858b871b38d Mon Sep 17 00:00:00 2001 From: Edward Oakes Date: Tue, 2 Jun 2020 10:55:20 -0500 Subject: [PATCH] fix docstring (#8736) --- python/ray/serve/api.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/python/ray/serve/api.py b/python/ray/serve/api.py index 75a3cca8b..eb7bc1664 100644 --- a/python/ray/serve/api.py +++ b/python/ray/serve/api.py @@ -136,8 +136,6 @@ def create_endpoint(endpoint_name, route=None, methods=["GET"]): used as key to set traffic policy. route (str): A string begin with "/". HTTP server will use the string to match the path. - blocking (bool): If true, the function will wait for service to be - registered before returning """ retry_actor_failures(master_actor.create_endpoint, route, endpoint_name, [m.upper() for m in methods])