From 8b2568fc04eee2a172ba28b8ef52940600fa9231 Mon Sep 17 00:00:00 2001 From: Sam Willis Date: Sun, 8 Dec 2024 19:22:27 +0000 Subject: [PATCH] formatting --- docs/docs/sync.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/docs/sync.md b/docs/docs/sync.md index 70d0cd74..67a99029 100644 --- a/docs/docs/sync.md +++ b/docs/docs/sync.md @@ -97,10 +97,11 @@ It takes the following options as an object: - `commitGranularity: CommitGranularity`
The granularity of the commit operation, defaults to `"up-to-date"`. Note that a commit will always be performed immediately on the `up-to-date` message. Options: + - `"up-to-date"`: Commit all messages when the `up-to-date` message is received. - `"transaction"`: Commit all messages within transactions as they were applied to the source Postgres. - `"operation"`: Commit each message in its own transaction. - - `number`: Commit every N messages. + - `number`: Commit every N messages. - `commitThrottle: number`
The number of milliseconds to wait between commits, defaults to `0`.