AI rule node: improve cache key readability

This commit is contained in:
Dmytro Skarzhynets 2025-06-09 17:38:41 +03:00
parent 5e5a7c9e51
commit a9633cf1ce
No known key found for this signature in database
GPG Key ID: 2B51652F224037DF

View File

@ -43,7 +43,7 @@ record AiSettingsCacheKey(UUID tenantId, UUID aiSettingsId) implements Versioned
@NonNull
@Override
public String toString() {
return tenantId + "_" + aiSettingsId;
return /* cache name */ "_" + tenantId + "_" + aiSettingsId;
}
}