X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2FAutomaticTransactionGenerator.ts;h=0b1e7e2786d7f31c41f6be853c80d651b79e4db0;hb=ab5f4b034b43c9e1baaee6c133ac6bbfd6cefd30;hp=29f571e961315eb9b1f7ec8fe9eed4618d1d8cad;hpb=f98fbdb9a436347eff2c0ba9590543d1d021db00;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/AutomaticTransactionGenerator.ts b/src/charging-station/AutomaticTransactionGenerator.ts index 29f571e9..0b1e7e27 100644 --- a/src/charging-station/AutomaticTransactionGenerator.ts +++ b/src/charging-station/AutomaticTransactionGenerator.ts @@ -39,12 +39,12 @@ export default class AutomaticTransactionGenerator { if (this._chargingStation.stationInfo.AutomaticTransactionGenerator.stopAfterHours && this._chargingStation.stationInfo.AutomaticTransactionGenerator.stopAfterHours > 0) { setTimeout(() => { - this.stop(); + void this.stop(); }, this._chargingStation.stationInfo.AutomaticTransactionGenerator.stopAfterHours * 3600 * 1000); } for (const connector in this._chargingStation.connectors) { if (Utils.convertToInt(connector) > 0) { - this.startConnector(Utils.convertToInt(connector)); + void this.startConnector(Utils.convertToInt(connector)); } } logger.info(this._logPrefix() + ' ATG started and will stop in ' + Utils.secondsToHHMMSS(this._chargingStation.stationInfo.AutomaticTransactionGenerator.stopAfterHours * 3600)); @@ -71,8 +71,13 @@ export default class AutomaticTransactionGenerator { logger.error(this._logPrefix(connectorId) + ' Entered in transaction loop while the charging station is not registered'); break; } - if (!this._chargingStation._isChargingStationAvailable() || !this._chargingStation._isConnectorAvailable(connectorId)) { - logger.error(this._logPrefix(connectorId) + ' Entered in transaction loop while the charging station or connector is unavailable'); + if (!this._chargingStation._isChargingStationAvailable()) { + logger.info(this._logPrefix(connectorId) + ' Entered in transaction loop while the charging station is unavailable'); + await this.stop(); + break; + } + if (!this._chargingStation._isConnectorAvailable(connectorId)) { + logger.info(`${this._logPrefix(connectorId)} Entered in transaction loop while the connector ${connectorId} is unavailable, stop it`); break; } const wait = Utils.getRandomInt(this._chargingStation.stationInfo.AutomaticTransactionGenerator.maxDelayBetweenTwoTransactions,