Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ private void start() {
if (logger.isInfoEnabled()) {
if (!StringUtils.hasText(this.functionDefinition)) {
logger.info("Failed to determine default function. Please use 'spring.cloud.function.definition' property "
+ "or pass function definition as a constructir argument to this FunctionInvoker");
+ "or pass function definition as a constructor argument to this FunctionInvoker");
}
Set<String> names = functionCatalog.getNames(null);
if (names.size() == 1) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class LambdaDestinationResolver implements DestinationResolver {
@Override
public String destination(Supplier<?> supplier, String name, Object value) {
if (logger.isDebugEnabled()) {
logger.debug("Lambda invoming value: " + value);
logger.debug("Lambda incoming value: " + value);
}
String destination = "unknown";
if (value instanceof Message) {
Expand Down