Browse Source

Tenant profile editing fix

pull/12138/head
Andrii Shvaika 2 years ago
parent
commit
04074b8baa
  1. 4
      common/data/src/main/java/org/thingsboard/server/common/data/tenant/profile/DefaultTenantProfileConfiguration.java
  2. 3
      common/data/src/main/java/org/thingsboard/server/common/data/tenant/profile/TenantProfileConfiguration.java

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

@ -203,8 +203,4 @@ public class DefaultTenantProfileConfiguration implements TenantProfileConfigura
return maxRuleNodeExecutionsPerMessage;
}
@Override
public int getMaxDebugModeDurationMinutes() {
return maxDebugModeDurationMinutes;
}
}

3
common/data/src/main/java/org/thingsboard/server/common/data/tenant/profile/TenantProfileConfiguration.java

@ -51,7 +51,4 @@ public interface TenantProfileConfiguration extends Serializable {
@JsonIgnore
int getMaxRuleNodeExecsPerMessage();
@JsonIgnore
int getMaxDebugModeDurationMinutes();
}

Loading…
Cancel
Save