You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Luca Burgazzoli (Jira)" <ji...@apache.org> on 2021/03/29 10:34:00 UTC

[jira] [Created] (CAMEL-16424) yaml dsl: re-introduce support for parameters in endpoint definitions

Luca Burgazzoli created CAMEL-16424:
---------------------------------------

             Summary: yaml dsl: re-introduce support for parameters in endpoint definitions
                 Key: CAMEL-16424
                 URL: https://issues.apache.org/jira/browse/CAMEL-16424
             Project: Camel
          Issue Type: Task
          Components: camel-yaml-dsl
    Affects Versions: 3.9.0
            Reporter: Luca Burgazzoli
            Assignee: Luca Burgazzoli
             Fix For: 3.10.0


In the YAMl DSL it is possible to split uri + parameters in endpoint definitions, when migrating from camel-k to camel and re-engine the YAML DSL, the parameters entry have been replaced with properties:

camel-k:
{code}
to:
    uri: direct:message
    parameters:
        foo: bar
{code}

camel:
{code}
to:
    uri: direct:message
    properties:
        foo: bar
{code}

parameters feels more natural hence we need to bring it back.




--
This message was sent by Atlassian Jira
(v8.3.4#803005)