We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71b1e8b commit 033b220Copy full SHA for 033b220
1 file changed
src/persistentNodeCache.ts
@@ -219,7 +219,7 @@ export default class PersistentNodeCache extends NodeCache {
219
220
private appendToFile(fileName: string, data: Buffer): void {
221
this.changesSinceLastBackup = true;
222
- const flags = fs.constants.O_WRONLY | fs.constants.O_DIRECT | fs.constants.O_APPEND;
+ const flags = fs.constants.O_WRONLY | fs.constants.O_APPEND;
223
const mode = 0o666;
224
225
if(this.appendFileDescriptor) {
0 commit comments