Skip to content

Commit

Permalink
fix: fix broken links
Browse files Browse the repository at this point in the history
Signed-off-by: SamMayWork <[email protected]>
  • Loading branch information
SamMayWork committed Feb 22, 2024
1 parent 66c0d6b commit 57b1233
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/reference/types/_includes/subscription_description.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ allowing you to customize your HTTP requests as follows:
- Wait for a invocation of the back-end service, before acknowledging
- To retry requests to your Webhook on a non-`2xx` HTTP status code
or other error, you should enable and configure
[options.retry](#webhookretryoptions)
[options.retry](../subscription.html#webhookretryoptions)
- The event is acknowledged once the request (with any retries), is
completed - regardless of whether the outcome was a success or failure.
- Use `fastack` to acknowledge against FireFly immediately and make multiple
Expand All @@ -190,7 +190,7 @@ allowing you to customize your HTTP requests as follows:

Webhooks have the ability to batch events into a single HTTP request instead of sending an event per HTTP request. The interface will be a JSON array of events instead of a top level JSON object with a single event. The size of the batch will be set by the `readAhead` limit and an optional timeout can be specified to send the events when the batch hasn't filled.

To enable this set the following configuration under [SubscriptionOptions](#SubscriptionOptions)
To enable this set the following configuration under [SubscriptionOptions](../subscription.html#subscriptionoptions)

`batch` | Events are delivered in batches in an ordered array. The batch size is capped to the readAhead limit. The event payload is always an array even if there is a single event in the batch. Commonly used with Webhooks to allow events to be delivered and acknowledged in batches. | `bool` |

Expand Down

0 comments on commit 57b1233

Please sign in to comment.