Skip to content

Commit

Permalink
Merge pull request #209 from sudhir-b/fix-syncperiod-option
Browse files Browse the repository at this point in the history
Send syncInterval as syncPeriod instead
  • Loading branch information
haaawk authored May 23, 2024
2 parents f97f278 + 9fe6cf4 commit 1a3ac22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/libsql-client/src/sqlite3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export function _createClient(config: ExpandedConfig): Client {
authToken: config.authToken,
encryptionKey: config.encryptionKey,
syncUrl: config.syncUrl,
syncInterval: config.syncInterval,
syncPeriod: config.syncInterval,
};

const db = new Database(path, options);
Expand Down

0 comments on commit 1a3ac22

Please sign in to comment.