Skip to content

Commit

Permalink
Add workaround for Datastore backend issue
Browse files Browse the repository at this point in the history
  • Loading branch information
hverlind committed Feb 24, 2024
1 parent 3ea9100 commit 4c01d08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/datastore/datastore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import crypto from 'crypto'
let datastore: Datastore
export const getDatastore = () => {
if (!datastore) {
datastore = new Datastore()
datastore = new Datastore({ fallback: 'rest' })
}
return datastore
}
Expand Down

0 comments on commit 4c01d08

Please sign in to comment.