You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using nedb for a webapp with concurrent requests that open the same db file the library tries to do multiple rename operations on db tempfile, and when the first one already succeeded the following ones fails since the tempfile doesn't exist anymore: ./node_modules/nedb/lib/datastore.js:77 if (err) { throw err; } ^ Error: ENOENT: no such file or directory, open './server/db/LpJTzs81YzLVczd9/history/fiveMinSnapshot.db~'
The text was updated successfully, but these errors were encountered:
When using nedb for a webapp with concurrent requests that open the same db file the library tries to do multiple rename operations on db tempfile, and when the first one already succeeded the following ones fails since the tempfile doesn't exist anymore:
./node_modules/nedb/lib/datastore.js:77 if (err) { throw err; } ^ Error: ENOENT: no such file or directory, open './server/db/LpJTzs81YzLVczd9/history/fiveMinSnapshot.db~'
The text was updated successfully, but these errors were encountered: