You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2024/03/10 09:58:19 UTC

(camel) branch main updated: CAMEL-20531: Add missing console clause to CamelCatalog.findNames

This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 4b27439d320 CAMEL-20531: Add missing console clause to CamelCatalog.findNames
4b27439d320 is described below

commit 4b27439d320d4080b261ebb0eda24d967dabf663
Author: James Netherton <ja...@gmail.com>
AuthorDate: Sun Mar 10 09:32:44 2024 +0000

    CAMEL-20531: Add missing console clause to CamelCatalog.findNames
---
 .../src/main/java/org/apache/camel/catalog/CamelCatalog.java            | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/catalog/camel-catalog/src/main/java/org/apache/camel/catalog/CamelCatalog.java b/catalog/camel-catalog/src/main/java/org/apache/camel/catalog/CamelCatalog.java
index 9ac41f70363..4d2744e171b 100644
--- a/catalog/camel-catalog/src/main/java/org/apache/camel/catalog/CamelCatalog.java
+++ b/catalog/camel-catalog/src/main/java/org/apache/camel/catalog/CamelCatalog.java
@@ -228,6 +228,8 @@ public interface CamelCatalog {
                 return findLanguageNames();
             case transformer:
                 return findTransformerNames();
+            case console:
+                return findDevConsoleNames();
             case other:
                 return findOtherNames();
             case eip: