Browse Source

Merge pull request #10742 from thingsboard/fix/tenant-profile-execs-per-message

Fix maxRuleNodeExecutionsPerMessage (failed test TenantProfileEdgeTest.testTenantProfiles)
pull/10743/head
Viacheslav Klimov 2 years ago
committed by GitHub
parent
commit
600ea11854
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      common/data/src/main/java/org/thingsboard/server/common/data/tenant/profile/DefaultTenantProfileConfiguration.java

2
common/data/src/main/java/org/thingsboard/server/common/data/tenant/profile/DefaultTenantProfileConfiguration.java

@ -59,7 +59,7 @@ public class DefaultTenantProfileConfiguration implements TenantProfileConfigura
private long maxJSExecutions;
private long maxTbelExecutions;
private long maxDPStorageDays;
private int maxRuleNodeExecutionsPerMessage = 1000;
private int maxRuleNodeExecutionsPerMessage;
private long maxEmails;
private Boolean smsEnabled;
private long maxSms;

Loading…
Cancel
Save