Skip to content

Commit 669df58

Browse files
authoredSep 7, 2021
changing durability to relaxed (#2934)
* changing durability to be relaxed * fix bug * add QueueDB add to be durability relaxed
1 parent 43d56d5 commit 669df58

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed
 

‎packages/workbox-background-sync/src/lib/QueueDb.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ export class QueueDb {
5656
*/
5757
async addEntry(entry: UnidentifiedQueueStoreEntry): Promise<void> {
5858
const db = await this.getDb();
59-
await db.add(REQUEST_OBJECT_STORE_NAME, entry as QueueStoreEntry);
59+
const tx = db.transaction(REQUEST_OBJECT_STORE_NAME, 'readwrite', { durability: 'relaxed' });
60+
await tx.store.add(entry as QueueStoreEntry);
61+
await tx.done;
6062
}
6163

6264
/**

‎packages/workbox-expiration/src/models/CacheTimestampsModel.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,9 @@ class CacheTimestampsModel {
111111
id: this._getId(url),
112112
};
113113
const db = await this.getDb();
114-
await db.put(CACHE_OBJECT_STORE, entry);
114+
const tx = db.transaction(CACHE_OBJECT_STORE, 'readwrite', {durability: 'relaxed'});
115+
await tx.store.put(entry);
116+
await tx.done;
115117
}
116118

117119
/**

0 commit comments

Comments
 (0)
Please sign in to comment.