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

Slack Source Kamelet: Set default delay to 1 minute #1208

Merged
merged 4 commits into from
Dec 13, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion kamelets/slack-source.kamelet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ spec:
title: Delay
description: The delay between polls. If no unit provided, miliseconds is the default.
type: string
default: "60000"
example: "60s or 6000 or 1m"
types:
out:
Expand All @@ -66,7 +67,7 @@ spec:
uri: "slack:{{channel}}"
parameters:
token: "{{token}}"
delay: "{{?delay}}"
delay: "{{delay}}"
steps:
- marshal:
json:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ spec:
title: Delay
description: The delay between polls. If no unit provided, miliseconds is the default.
type: string
default: "60000"
example: "60s or 6000 or 1m"
types:
out:
Expand All @@ -66,7 +67,7 @@ spec:
uri: "slack:{{channel}}"
parameters:
token: "{{token}}"
delay: "{{?delay}}"
delay: "{{delay}}"
steps:
- marshal:
json:
Expand Down