From cd9883e5ece2d4f0a96ea90635715bc5fb94610e Mon Sep 17 00:00:00 2001 From: Yury-Fridlyand Date: Wed, 2 Oct 2024 15:44:33 -0700 Subject: [PATCH] --- .../java/glide/api/models/configuration/ProtocolVersion.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/client/src/main/java/glide/api/models/configuration/ProtocolVersion.java b/java/client/src/main/java/glide/api/models/configuration/ProtocolVersion.java index 38fd6c2a1a..127e570c98 100644 --- a/java/client/src/main/java/glide/api/models/configuration/ProtocolVersion.java +++ b/java/client/src/main/java/glide/api/models/configuration/ProtocolVersion.java @@ -3,8 +3,8 @@ /** Represents the communication protocol with the server. */ public enum ProtocolVersion { - /** Use RESP2 to communicate with the server nodes. */ - RESP3, /** Use RESP3 to communicate with the server nodes. */ + RESP3, + /** Use RESP2 to communicate with the server nodes. */ RESP2 }