You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2019/12/18 07:02:45 UTC

[camel-k] branch master updated (c1e567d -> bc08a41)

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

nferraro pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k.git.


    from c1e567d  Fix #1089: defer knative detection to when integration runs
     new c983214  fix for issue #1138
     new bc08a41  goimports - fix build issue import order

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 cmd/kamel/main.go | 1 +
 1 file changed, 1 insertion(+)


[camel-k] 01/02: fix for issue #1138

Posted by nf...@apache.org.
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 c983214f459ac8b3b47195e28979213767cc6f46
Author: Ganesh Raja <ga...@hmcts.net>
AuthorDate: Tue Dec 17 14:32:40 2019 +0000

    fix for issue #1138
---
 cmd/kamel/main.go | 1 +
 1 file changed, 1 insertion(+)

diff --git a/cmd/kamel/main.go b/cmd/kamel/main.go
index 6713497..5402649 100644
--- a/cmd/kamel/main.go
+++ b/cmd/kamel/main.go
@@ -29,6 +29,7 @@ import (
 	"github.com/apache/camel-k/pkg/cmd"
 
 	_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
+	_ "k8s.io/client-go/plugin/pkg/client/auth/azure"
 )
 
 func main() {


[camel-k] 02/02: goimports - fix build issue import order

Posted by nf...@apache.org.
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 bc08a41e327f26c5bd9133dbb64da8cd06c9aec2
Author: Ganeshraja Ramu <ga...@hmcts.net>
AuthorDate: Tue Dec 17 23:43:39 2019 +0000

    goimports - fix build issue import order
---
 cmd/kamel/main.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/kamel/main.go b/cmd/kamel/main.go
index 5402649..3402644 100644
--- a/cmd/kamel/main.go
+++ b/cmd/kamel/main.go
@@ -28,8 +28,8 @@ import (
 	_ "github.com/apache/camel-k/pkg/builder/s2i"
 	"github.com/apache/camel-k/pkg/cmd"
 
-	_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
 	_ "k8s.io/client-go/plugin/pkg/client/auth/azure"
+	_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
 )
 
 func main() {