Skip to content
This repository was archived by the owner on Mar 1, 2025. It is now read-only.
Merged
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ onResponse.subscribe((data) => {

**Channel**: `fastify.onError`

This event is sent when some error is throw on the [lifecycle](https://www.fastify.io/docs/latest/Lifecycle/) of Fastify.
This event is sent when some error is throw on the [lifecycle](https://fastify.dev/docs/latest/Lifecycle/) of Fastify.

The message data is an object containing a [`request` object](https://github.com/fastify/fastify/blob/master/docs/Request.md), [`reply` object](https://github.com/fastify/fastify/blob/master/docs/Reply.md), and Error object

Expand All @@ -93,7 +93,7 @@ onError.subscribe((data) => {

**Channel**: `fastify.onTimeout`

This event is sent when a request spent more time than [`connectionTimeout`](https://www.fastify.io/docs/latest/Server/#connectiontimeout) specifies. For further information about `connectionTimeout` check the Fastify documentation.
This event is sent when a request spent more time than [`connectionTimeout`](https://fastify.dev/docs/latest/Server/#connectiontimeout) specifies. For further information about `connectionTimeout` check the Fastify documentation.

The message data is an object containing a [`request` object](https://github.com/fastify/fastify/blob/master/docs/Request.md), [`reply` object](https://github.com/fastify/fastify/blob/master/docs/Reply.md), and `connectionTimeout` value

Expand Down