Apply spotless

This commit is contained in:
dotasek
2025-10-31 09:34:49 -04:00
parent 5df170400a
commit ac494a9b26

View File

@@ -35,9 +35,8 @@ public class PartitionModeConfigurer {
} else if (partitioning.getRequest_tenant_partitioning_mode()) {
ourLog.info("Partitioning mode enabled in: Request tenant partitioning mode");
RequestTenantPartitionInterceptor tenantPartitionInterceptor = new RequestTenantPartitionInterceptor();
tenantPartitionInterceptor.setPartitionSettings(myPartitionSettings);
myRestfulServer.registerInterceptor(tenantPartitionInterceptor);
//myRestfulServer.registerInterceptor(new RequestTenantPartitionInterceptor());
tenantPartitionInterceptor.setPartitionSettings(myPartitionSettings);
myRestfulServer.registerInterceptor(tenantPartitionInterceptor);
myRestfulServer.setTenantIdentificationStrategy(new UrlBaseTenantIdentificationStrategy());
}