Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Space in property "name" of insert-header-action cause IllegalArgumentException #348

Merged
merged 3 commits into from
Jun 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/insert-header-action.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The following table summarizes the configuration options available for the `inse
[width="100%",cols="2,^2,3,^2,^2,^3",options="header"]
|===
| Property| Name| Description| Type| Default| Example
| *name {empty}* *| Name| The name of the header to be added| string| |
| *name {empty}* *| Name| The name of the header to be added| string| | `"headername"`
| *value {empty}* *| Value| The value of the header| string| |
|===

Expand Down Expand Up @@ -48,7 +48,7 @@ spec:
apiVersion: camel.apache.org/v1alpha1
name: insert-header-action
properties:
name: "TheName"
name: "headername"
value: "The Value"
sink:
ref:
Expand Down
1 change: 1 addition & 0 deletions insert-header-action.kamelet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ spec:
title: Name
description: The name of the header to be added
type: string
example: headername
value:
title: Value
description: The value of the header
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ spec:
title: Name
description: The name of the header to be added
type: string
example: headername
value:
title: Value
description: The value of the header
Expand Down