include badly spelled error message in logic

Signed-off-by: Travis Glenn Hansen <travisghansen@yahoo.com>
This commit is contained in:
Travis Glenn Hansen 2025-01-21 02:22:26 -07:00
parent b8d0129ae4
commit b13184b02a
1 changed files with 7 additions and 7 deletions

View File

@ -29,9 +29,9 @@ class NVMEoF {
nvmeof.logger = nvmeof.options.logger;
} else {
nvmeof.logger = console;
console.verbose = function() {
console.verbose = function () {
console.log(...arguments);
}
};
}
}
@ -112,7 +112,7 @@ class NVMEoF {
if (!arg.startsWith("-")) {
arg = `--${arg}`;
}
transport_args.push(arg, value);
}
}
@ -122,9 +122,11 @@ class NVMEoF {
try {
await nvmeof.exec(nvmeof.options.paths.nvme, args);
} catch (err) {
// already connnected - is mispelled in older versions so we include both
if (
err.stderr &&
(err.stderr.includes("already connected") ||
err.stderr.includes("already connnected") ||
err.stderr.includes("Operation already in progress"))
) {
// idempotent
@ -279,9 +281,7 @@ class NVMEoF {
async pathExists(path) {
const nvmeof = this;
try {
await nvmeof.exec("stat", [
path,
]);
await nvmeof.exec("stat", [path]);
return true;
} catch (err) {
return false;
@ -302,7 +302,7 @@ class NVMEoF {
}
throw err;
}
return result.stdout.trim() == "Y";
}