This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch release-1.9.x in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit ab9e6d75f27111b02230f3beacf5f007a96f30e8 Author: Pasquale Congiusti <[email protected]> AuthorDate: Fri May 6 10:43:00 2022 +0200 fix(e2e): rest yaml definition as Camel 3.15 --- e2e/common/files/rest-consumer.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/e2e/common/files/rest-consumer.yaml b/e2e/common/files/rest-consumer.yaml index 2b01f13cf..b7b8e26bb 100644 --- a/e2e/common/files/rest-consumer.yaml +++ b/e2e/common/files/rest-consumer.yaml @@ -16,10 +16,9 @@ # --------------------------------------------------------------------------- - rest: - verb: - - method: get - uri: "/customers/{name}" - to: "direct:start" + get: + - to: "direct:start" + path: "/customers/{name}" - from: uri: "direct:start"
