Added Edge version 4.2.0

This commit is contained in:
Volodymyr Babak 2025-07-17 12:44:19 +03:00
parent 2c2a9ad83f
commit b52a60f05d
2 changed files with 2 additions and 1 deletions

View File

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

View File

@ -43,6 +43,7 @@ enum EdgeVersion {
V_3_9_0 = 9;
V_4_0_0 = 10;
V_4_1_0 = 11;
V_4_2_0 = 12;
V_LATEST = 999;
}