You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pc...@apache.org on 2023/10/18 07:24:30 UTC

[camel-k] branch main updated: fix: removed unnecessary defaul value

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

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


The following commit(s) were added to refs/heads/main by this push:
     new d345e1136 fix: removed unnecessary defaul value
d345e1136 is described below

commit d345e11367504916125e751b14e09da195715139
Author: Martin Olsiak <ma...@gmail.com>
AuthorDate: Tue Oct 17 13:29:55 2023 +0200

    fix: removed unnecessary defaul value
---
 pkg/trait/route.go | 1 -
 1 file changed, 1 deletion(-)

diff --git a/pkg/trait/route.go b/pkg/trait/route.go
index 933eba3d4..165e345b6 100644
--- a/pkg/trait/route.go
+++ b/pkg/trait/route.go
@@ -45,7 +45,6 @@ func newRouteTrait() Trait {
 		BaseTrait: NewBaseTrait("route", 2200),
 		RouteTrait: traitv1.RouteTrait{
 			Annotations: map[string]string{},
-			Host:        "",
 		},
 	}
 }