Skip to content

Commit 1c3b279

Browse files
build - 1.4.2
1 parent ce4d4c4 commit 1c3b279

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

dist/src/libraries/Executor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ _Executor_instances = new WeakSet(), _Executor_execute = function _Executor_exec
393393
}
394394
}
395395
catch (error) {
396-
if (String(error) === 'Error: Lock file is already being held') {
396+
if (String(error).includes('Lock file is already being held')) {
397397
this.logger.log('Waiting for lock for libaio copy');
398398
await (0, FileLock_1.waitForLock)(copyPath, options);
399399
this.logger.log('Lock is gone for libaio copy');

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mysql-memory-server",
3-
"version": "1.4.1",
3+
"version": "1.4.2",
44
"description": "Spin up an ephemeral MySQL database from your JavaScript code",
55
"main": "dist/src/index.js",
66
"types": "dist/src/index.d.ts",

0 commit comments

Comments
 (0)