UI server: comment and code cleanups
authorJérôme Benoit <jerome.benoit@sap.com>
Fri, 26 Aug 2022 22:23:47 +0000 (00:23 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Fri, 26 Aug 2022 22:23:47 +0000 (00:23 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/charging-station/ui-server/UIHttpServer.ts
src/charging-station/ui-server/ui-services/AbstractUIService.ts

index 98a1a4953340c91b20ef02d163838fce8fbccdae..0731b3c09712f7df1841e679227fb3b30c642184 100644 (file)
@@ -59,7 +59,7 @@ export default class UIHttpServer extends AbstractUIServer {
         break;
     }
     if (this.responseHandlers.has(uuid)) {
-      const { procedureName, res } = this.responseHandlers.get(uuid);
+      const { res } = this.responseHandlers.get(uuid);
       res.writeHead(statusCode, { 'Content-Type': 'application/json' });
       res.write(JSON.stringify(payload));
       res.end();
index e27577d353e004491a7e926facc24cce4efa41d4..24307992872011f53053977131a93b0b4cb826ad 100644 (file)
@@ -103,8 +103,7 @@ export default abstract class AbstractUIService {
     return JSON.stringify([messageId, responsePayload] as ProtocolResponse);
   }
 
-  // Validate the raw data received from the WebSocket
-  // TODO: should probably be moved to the ws verify clients callback
+  // Validate the raw data received from the UI server
   private requestValidation(rawData: RawData | JsonType): ProtocolRequest {
     // logger.debug(
     //   `${this.logPrefix(