Browse Source

Merge pull request #10651 from smatvienko-tb/fix/coap.dtls.connection_id_length

coap.dtls.connection_id_length added default null value to tolerate yaml inconsistency case
pull/10652/head
Andrew Shvayka 2 years ago
committed by GitHub
parent
commit
8b562638e9
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      common/coap-server/src/main/java/org/thingsboard/server/coapserver/TbCoapDtlsSettings.java

2
common/coap-server/src/main/java/org/thingsboard/server/coapserver/TbCoapDtlsSettings.java

@ -61,7 +61,7 @@ public class TbCoapDtlsSettings {
@Value("${transport.coap.dtls.retransmission_timeout:9000}")
private int dtlsRetransmissionTimeout;
@Value("${transport.coap.dtls.connection_id_length}")
@Value("${transport.coap.dtls.connection_id_length:}")
private Integer cIdLength;
@Bean

Loading…
Cancel
Save