refactor: stop !== shutdown semantic
authorJérôme Benoit <jerome.benoit@sap.com>
Fri, 26 May 2023 21:47:31 +0000 (23:47 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Fri, 26 May 2023 21:47:31 +0000 (23:47 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
.vscode/settings.json
src/charging-station/Bootstrap.ts

index 47a0799f031eb80b48e03dbc8107012e7780044d..1f23ab8a2b10fd06fd56f22b8ad760348c4119fd 100644 (file)
@@ -36,6 +36,7 @@
     "preinstall",
     "Recurrency",
     "robohydra",
+    "shutdowning",
     "sonarlint",
     "SRPC",
     "tsdoc",
index 5e1ac3eb4b1b447720b5489e629ef143e510a5c7..677843d27c1c479ac4c9e34f98bcd98f38a55a44 100644 (file)
@@ -299,7 +299,7 @@ export class Bootstrap extends EventEmitter {
         process.exit(0);
       })
       .catch((error) => {
-        console.error(chalk.red('Error while stopping charging stations simulator: '), error);
+        console.error(chalk.red('Error while shutdowning charging stations simulator: '), error);
         process.exit(1);
       });
   };