We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5733a0f commit 1b669adCopy full SHA for 1b669ad
packages/mongodb-memory-server-core/src/util/lockfile.ts
@@ -81,6 +81,8 @@ export class LockFile {
81
return !this.files.has(file) ? LockFileStatus.available : LockFileStatus.lockedSelf;
82
}
83
84
+ log(`checkLock: Lock File Aready exists, for an different process: "${readout}"`);
85
+
86
return utils.isAlive(readout) ? LockFileStatus.lockedDifferent : LockFileStatus.available;
87
88
0 commit comments