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()); log.debug("[{}] Processing CF actor init message.", msg.getTenantId().getId());
initEntityProfileCache(); initEntityProfileCache();
initCalculatedFields(); initCalculatedFields();
// TODO: implement cache for 1:1 relations to use in the CFs that based on a relation queries?
msg.getCallback().onSuccess(); msg.getCallback().onSuccess();
} }

View File

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

View File

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