Fixes missing arguments while binding parameters

This commit is contained in:
spencergibb
2024-10-09 13:13:51 -04:00
parent ffb497e74c
commit 71ba49a620

View File

@@ -274,7 +274,7 @@ public class RouterFunctionHolderFactory {
Map<String, Object> args = new HashMap<>();
if (operationMethod.isConfigurable()) {
OperationParameter operationParameter = operationMethod.getParameters().get(0);
Object config = bindConfigurable(operationMethod, args, operationParameter);
Object config = bindConfigurable(operationMethod, operationArgs, operationParameter);
args.put(operationParameter.getName(), config);
}
else {