Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
tabpane line was missing
Signed-off-by: adam shamis <adamshamis.dev@gmail.com>
  • Loading branch information
adam6878 committed Nov 19, 2025
commit de42db4bfb5afcf785168ad0ee4138ca73748496
Original file line number Diff line number Diff line change
Expand Up @@ -260,11 +260,7 @@ into a broker that Dapr reads from):

3. Send the payload bytes in the message body.

Dapr reconstructs the CloudEvent envelope from those metadata values, adds any
missing tracing metadata (for example `traceid`, `traceparent`, `tracestate`,
`topic`, and `pubsubname`), and delivers the message to subscribers in the same
way as a structured CloudEvent. This applies equally to HTTP producers as well
as to brokers like Kafka that persist headers alongside payloads.
{{< tabpane text=true >}}

{{% tab "HTTP API (Bash)" %}}

Expand All @@ -283,6 +279,8 @@ curl -X POST http://localhost:3500/v1.0/publish/order-pub-sub/orders \

{{% /tab %}}

{{< /tabpane >}}

## Event deduplication

When using cloud events created by Dapr, the envelope contains an `id` field which can be used by the app to perform message deduplication. Dapr does not handle deduplication automatically. Dapr supports using message brokers that natively enable message deduplication.
Expand Down
Loading