Skip to content

Commit

Permalink
fix(MongoInstance::checkErrorInLine): replace "replaceAll" with "repl…
Browse files Browse the repository at this point in the history
…ace"
  • Loading branch information
hasezoey committed Jun 15, 2022
1 parent 473c278 commit 9546cf9
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -587,7 +587,7 @@ export class MongoInstance extends EventEmitter implements ManagerBase {
`Instance Failed to start with "${execptionMatch[1] ?? 'unknown'}". Original Error:\n` +
line
.substring(execptionMatch.index + execptionMatch[0].length)
.replaceAll(/, terminating$/gi, '')
.replace(/, terminating$/gi, '')
)
);
}
Expand Down

0 comments on commit 9546cf9

Please sign in to comment.