react-native-onyx 3.0.64 → 3.0.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/OnyxUtils.js +0 -2
- package/package.json +1 -1
package/dist/OnyxUtils.js
CHANGED
|
@@ -64,8 +64,6 @@ const IDB_STORAGE_ERRORS = [
|
|
|
64
64
|
// SQLite errors that indicate storage capacity issues where eviction can help
|
|
65
65
|
const SQLITE_STORAGE_ERRORS = [
|
|
66
66
|
'database or disk is full', // Device storage is full
|
|
67
|
-
'disk I/O error', // File system I/O failure, often due to insufficient space or corrupted storage
|
|
68
|
-
'out of memory', // Insufficient RAM or storage space to complete the operation
|
|
69
67
|
];
|
|
70
68
|
const STORAGE_ERRORS = [...IDB_STORAGE_ERRORS, ...SQLITE_STORAGE_ERRORS];
|
|
71
69
|
// Max number of retries for failed storage operations
|