Tenant profile editing fix

This commit is contained in:
Andrii Shvaika 2024-11-29 12:36:06 +02:00
parent 2900d3c1ed
commit 04074b8baa
2 changed files with 0 additions and 7 deletions

View File

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

View File

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