This is an automated email from the ASF dual-hosted git repository. nferraro pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit 5ff028f9dab2aa827364e7b58f6a7962a93adc78 Author: Doru Bercea <[email protected]> AuthorDate: Thu Nov 5 09:39:01 2020 -0500 Use default and quarkus runtime. --- pkg/cmd/inspect.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/cmd/inspect.go b/pkg/cmd/inspect.go index caa2af9..3eef300 100644 --- a/pkg/cmd/inspect.go +++ b/pkg/cmd/inspect.go @@ -199,7 +199,7 @@ func generateCatalog() (*camel.RuntimeCatalog, error) { } runtime := v1.RuntimeSpec{ Version: defaults.DefaultRuntimeVersion, - Provider: v1.RuntimeProviderMain, + Provider: v1.RuntimeProviderQuarkus, } providerDependencies := []maven.Dependency{} catalog, err := camel.GenerateCatalogCommon(settings, mvn, runtime, providerDependencies) @@ -316,7 +316,7 @@ func getWorkingDirectory() (string, error) { func createCamelCatalog() (*camel.RuntimeCatalog, error) { // Attempt to reuse existing Camel catalog if one is present. - catalog, err := camel.MainCatalog() + catalog, err := camel.DefaultCatalog() if err != nil { return nil, err }
