Merge pull request #10540 from volodymyr-babak/hotfix/3.6.3

Set edge client version to 3.6.4
This commit is contained in:
Volodymyr Babak 2024-04-11 13:33:14 +03:00 committed by GitHub
commit 41c967be80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -111,7 +111,7 @@ public class EdgeGrpcClient implements EdgeRpcClient {
.setConnectRequestMsg(ConnectRequestMsg.newBuilder() .setConnectRequestMsg(ConnectRequestMsg.newBuilder()
.setEdgeRoutingKey(edgeKey) .setEdgeRoutingKey(edgeKey)
.setEdgeSecret(edgeSecret) .setEdgeSecret(edgeSecret)
.setEdgeVersion(EdgeVersion.V_3_6_2) .setEdgeVersion(EdgeVersion.V_3_6_4)
.setMaxInboundMessageSize(maxInboundMessageSize) .setMaxInboundMessageSize(maxInboundMessageSize)
.build()) .build())
.build()); .build());

View File

@ -37,6 +37,7 @@ enum EdgeVersion {
V_3_6_0 = 3; V_3_6_0 = 3;
V_3_6_1 = 4; V_3_6_1 = 4;
V_3_6_2 = 5; V_3_6_2 = 5;
V_3_6_4 = 6;
} }
/** /**