typos fix

This commit is contained in:
dshvaika 2025-08-08 17:02:29 +03:00
parent 71f092c4e8
commit fb84eb0695
3 changed files with 5 additions and 6 deletions

View File

@ -124,7 +124,6 @@ public class CalculatedFieldManagerMessageProcessor extends AbstractContextAware
log.debug("[{}] Processing CF actor init message.", msg.getTenantId().getId());
initEntityProfileCache();
initCalculatedFields();
// TODO: implement cache for 1:1 relations to use in the CFs that based on a relation queries?
msg.getCallback().onSuccess();
}

View File

@ -40,7 +40,7 @@ public class GeofencingCalculatedFieldConfiguration extends BaseCalculatedFieldC
ENTITY_ID_LONGITUDE_ARGUMENT_KEY
);
Map<String, GeofencingZoneGroupConfiguration> geofencingZoneGroupConfigurations;
private Map<String, GeofencingZoneGroupConfiguration> geofencingZoneGroupConfigurations;
@Override
public CalculatedFieldType getType() {

View File

@ -172,10 +172,10 @@ public class DefaultTenantProfileConfiguration implements TenantProfileConfigura
private long maxCalculatedFieldsPerEntity = 5;
@Schema(example = "10")
private long maxArgumentsPerCF = 10;
@Schema(example = "300")
private int minAllowedScheduledUpdateIntervalInSecForCF = 60;
@Schema(example = "300")
private int maxAllowedScheduledUpdateIntervalInSecForCF = 3600;
@Schema(example = "3600")
private int minAllowedScheduledUpdateIntervalInSecForCF = 3600;
@Schema(example = "86400")
private int maxAllowedScheduledUpdateIntervalInSecForCF = 86400;
@Builder.Default
@Min(value = 1, message = "must be at least 1")
@Schema(example = "1000")