Skip to content

Commit c45159f

Browse files
fix bug where metadata was incorrectly formated (#1927)
* fix bug where metadata was incorrectly formated * bump ci
1 parent 0d0f7b9 commit c45159f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/shared/services/bolt/bolt.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,9 @@ async function backgroundWorkerlessRoutedRead(
194194
if (!session) return Promise.reject(BoltConnectionError())
195195

196196
return session
197-
.executeRead(tx => tx.run(input), { metadata: backgroundTxMetadata })
197+
.executeRead(tx => tx.run(input), {
198+
metadata: backgroundTxMetadata.txMetadata
199+
})
198200
.finally(() => session.close())
199201
}
200202

0 commit comments

Comments
 (0)