From 60f0e4e30f298bcc717d3609b7e2f947f1b279b9 Mon Sep 17 00:00:00 2001 From: Chengxuan Xing Date: Fri, 12 Apr 2024 17:50:32 +0000 Subject: [PATCH 1/2] Update health.controller.ts Signed-off-by: Chengxuan Xing --- src/health/health.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/health/health.controller.ts b/src/health/health.controller.ts index 875bee7..b0fc909 100644 --- a/src/health/health.controller.ts +++ b/src/health/health.controller.ts @@ -28,7 +28,7 @@ export class HealthController { ); return this.http.pingCheck('ethconnect', `${this.blockchain.baseUrl}/status`, { auth: httpOptions.auth, - httpAgent: httpOptions.httpAgent, + httpsAgent: httpOptions.httpAgent, }); }, ]); From ba3070fb4a0277b75fab0e6c7dc27c6022c2317b Mon Sep 17 00:00:00 2001 From: Chengxuan Xing Date: Fri, 12 Apr 2024 17:52:59 +0000 Subject: [PATCH 2/2] Update health.controller.ts Signed-off-by: Chengxuan Xing --- src/health/health.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/health/health.controller.ts b/src/health/health.controller.ts index b0fc909..fef4124 100644 --- a/src/health/health.controller.ts +++ b/src/health/health.controller.ts @@ -28,7 +28,7 @@ export class HealthController { ); return this.http.pingCheck('ethconnect', `${this.blockchain.baseUrl}/status`, { auth: httpOptions.auth, - httpsAgent: httpOptions.httpAgent, + httpsAgent: httpOptions.httpsAgent, }); }, ]);