Commit 19bbccce56ff4599e2e3c83e05cc4c633aaac36f
1 parent
a3d728f0
Added edge rule chain if edges disabled - for future, when edges are enabled back
Showing
1 changed file
with
1 additions
and
3 deletions
... | ... | @@ -95,9 +95,7 @@ public class TenantController extends BaseController { |
95 | 95 | tenant = checkNotNull(tenantService.saveTenant(tenant)); |
96 | 96 | if (newTenant) { |
97 | 97 | installScripts.createDefaultRuleChains(tenant.getId()); |
98 | - if (edgesEnabled) { | |
99 | - installScripts.createDefaultEdgeRuleChains(tenant.getId()); | |
100 | - } | |
98 | + installScripts.createDefaultEdgeRuleChains(tenant.getId()); | |
101 | 99 | } |
102 | 100 | tenantProfileCache.evict(tenant.getId()); |
103 | 101 | tbClusterService.onTenantChange(tenant, null); | ... | ... |