Skip to content

Commit 3697192

Browse files
committed
improve warn message
1 parent 85498e1 commit 3697192

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • cloudplatform/connectivity-destination-service/src/main/java/com/sap/cloud/sdk/cloudplatform/connectivity

cloudplatform/connectivity-destination-service/src/main/java/com/sap/cloud/sdk/cloudplatform/connectivity/DestinationService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ static ResilienceConfiguration createResilienceConfiguration(
123123
{
124124
if (Cache.preLookupCheckEnabled) {
125125
if (Cache.isUsingExperimentalFeatures(options)) {
126-
log.warn("Using cache/change detection together with either fragments, cross-level options, or custom headers is discouraged. PreLookup check is skipped.");
126+
log.warn("Using pre-lookup check together with either fragments, cross-level options, or custom headers might lead to unexpected behaviour. Pre-lookup check is skipped.");
127127
} else if (!preLookupCheckSuccessful(destinationName, options)) {
128128
final String msg = "Destination %s was not found among the destinations of the current tenant.";
129129
return Try.failure(new DestinationNotFoundException(destinationName, String.format(msg, destinationName)));

0 commit comments

Comments
 (0)