Skip to content

Commit 54195ec

Browse files
committed
refactor: refactor sharded wal to handle coordinator
1 parent df0a281 commit 54195ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/utils/src/lib/wal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export type AppendableSink<T> = Recoverable & {
4343
*/
4444
export type RecoverResult<T> = {
4545
/** Successfully recovered records */
46-
records: (T | InvalidEntry)[];
46+
records: (T | InvalidEntry<string>)[];
4747
/** Errors encountered during recovery with line numbers and context */
4848
errors: { lineNo: number; line: string; error: Error }[];
4949
/** Last incomplete line if file was truncated (null if clean) */

0 commit comments

Comments
 (0)