Skip to content

Commit

Permalink
Change report: #1789.
Browse files Browse the repository at this point in the history
  • Loading branch information
bnasslahsen committed Aug 13, 2022
1 parent 37d8574 commit 533219d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public List<RouterOperation> getRouterOperations(OpenAPI openAPI) {
functionCatalog -> {
Set<String> names = functionCatalog.getNames(null);
for (String name : names) {
if (!RoutingFunction.FUNCTION_NAME.equals(name)) {
if (!RoutingFunction.FUNCTION_NAME.equals(name) && applicationContext.containsBean(name)) {
FunctionInvocationWrapper function = functionCatalog.lookup(name);
if (function.isFunction()) {
for (RequestMethod requestMethod : functionRequestMethods) {
Expand Down

0 comments on commit 533219d

Please sign in to comment.