From 982558a4d3fc98daa132bd380cfe447fb6c50c88 Mon Sep 17 00:00:00 2001 From: Eric Liang Date: Thu, 8 Apr 2021 11:38:48 -0700 Subject: [PATCH] Update ray client protocol version (#15184) --- python/ray/util/client/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/util/client/__init__.py b/python/ray/util/client/__init__.py index a774c5c3d..27e4d7079 100644 --- a/python/ray/util/client/__init__.py +++ b/python/ray/util/client/__init__.py @@ -8,7 +8,7 @@ logger = logging.getLogger(__name__) # This version string is incremented to indicate breaking changes in the # protocol that require upgrading the client version. -CURRENT_PROTOCOL_VERSION = "2020-03-12" +CURRENT_PROTOCOL_VERSION = "2020-04-07" class RayAPIStub: