Skip to content

Commit

Permalink
feat: trigger and realtime trigger title
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu committed May 24, 2024
1 parent 652d259 commit f8f4d71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions src/main/java/io/kestra/plugin/amqp/RealtimeTrigger.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
@Getter
@NoArgsConstructor
@Schema(
title = "React to and consume messages from an AMQP queue creating one executions for each message."
title = "Consume a message in real-time from a AMQP queue via change data capture and create one execution per message."
)
@Plugin(
examples = {
Expand All @@ -57,9 +57,6 @@
beta = true
)
public class RealtimeTrigger extends AbstractTrigger implements RealtimeTriggerInterface, TriggerOutput<Message>, ConsumeBaseInterface, AmqpConnectionInterface {
@Builder.Default
private final Duration interval = Duration.ofSeconds(60);

private String url;
private String host;
private String port;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/kestra/plugin/amqp/Trigger.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
@Getter
@NoArgsConstructor
@Schema(
title = "Wait for message in AMQP queue."
title = "Consume messages periodically from a AMQP queue and create one execution per batch."
)
@Plugin(
examples = {
Expand Down

0 comments on commit f8f4d71

Please sign in to comment.