X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fperformance%2Fstorage%2FMongoDBStorage.ts;h=3e1abd2bb59da44ae1ddff32ac4e1a0b3d297278;hb=b3d7d65476a4ab586b3ccd188f0bfbe8452aba0e;hp=7dd505d3732f4a3316e4f40c1710d98ea7025afa;hpb=7b5dbe910fc30484324da90ee209ab7002bc5071;p=e-mobility-charging-stations-simulator.git diff --git a/src/performance/storage/MongoDBStorage.ts b/src/performance/storage/MongoDBStorage.ts index 7dd505d3..3e1abd2b 100644 --- a/src/performance/storage/MongoDBStorage.ts +++ b/src/performance/storage/MongoDBStorage.ts @@ -58,15 +58,15 @@ export class MongoDBStorage extends Storage { if (!this?.client) { throw new BaseError( `${this.logPrefix} ${this.getDBNameFromStorageType( - StorageType.MONGO_DB - )} client initialization failed while trying to issue a request` + StorageType.MONGO_DB, + )} client initialization failed while trying to issue a request`, ); } if (!this.connected) { throw new BaseError( `${this.logPrefix} ${this.getDBNameFromStorageType( - StorageType.MONGO_DB - )} connection not opened while trying to issue a request` + StorageType.MONGO_DB, + )} connection not opened while trying to issue a request`, ); } }