fixing whcih typo

This commit is contained in:
salaboy
2022-02-03 09:29:46 +00:00
parent 9fcf6f8db8
commit a3b4e92137
2 changed files with 3 additions and 3 deletions

View File

@@ -197,7 +197,7 @@ public class RoutingFunction implements Function<Object, Object> {
Assert.hasText(functionName, "Failed to resolve function name based on routing expression '" + functionProperties.getRoutingExpression() + "'");
FunctionInvocationWrapper function = functionCatalog.lookup(functionName);
Assert.notNull(function, "Failed to lookup function to route to based on the expression '"
+ functionProperties.getRoutingExpression() + "' whcih resolved to '" + functionName + "' function name.");
+ functionProperties.getRoutingExpression() + "' which resolved to '" + functionName + "' function name.");
if (logger.isInfoEnabled()) {
logger.info("Resolved function from provided [routing-expression] " + routingExpression);
}