Browse Source
Merge pull request #12277 from AndriiLandiak/change_max_downlink_attempt
EdgeGrpcSession: change max downlink attempts value
pull/12282/head
Viacheslav Klimov
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
application/src/main/java/org/thingsboard/server/service/edge/rpc/EdgeGrpcSession.java
|
|
|
@ -110,7 +110,7 @@ public abstract class EdgeGrpcSession implements Closeable { |
|
|
|
private static final String QUEUE_START_TS_ATTR_KEY = "queueStartTs"; |
|
|
|
private static final String QUEUE_START_SEQ_ID_ATTR_KEY = "queueStartSeqId"; |
|
|
|
|
|
|
|
private static final int MAX_DOWNLINK_ATTEMPTS = 10; |
|
|
|
private static final int MAX_DOWNLINK_ATTEMPTS = 3; |
|
|
|
private static final String RATE_LIMIT_REACHED = "Rate limit reached"; |
|
|
|
|
|
|
|
protected static final ConcurrentLinkedQueue<EdgeEvent> highPriorityQueue = new ConcurrentLinkedQueue<>(); |
|
|
|
|