From f705376fbc0fc1b9c06f5f6508dc985437d56cbb Mon Sep 17 00:00:00 2001 From: Chengxuan Xing Date: Fri, 12 Apr 2024 17:51:20 +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 0562fa3..4b68514 100644 --- a/src/health/health.controller.ts +++ b/src/health/health.controller.ts @@ -44,7 +44,7 @@ export class HealthController { ); return this.http.pingCheck('ethconnect', `${this.blockchain.baseUrl}/status`, { auth: httpOptions.auth, - httpAgent: httpOptions.httpAgent, + httpsAgent: httpOptions.httpAgent, }); }, ]); From 97db29cdfe15fddf4334800b0f03fd25d5a69ba1 Mon Sep 17 00:00:00 2001 From: Chengxuan Xing Date: Fri, 12 Apr 2024 17:52:44 +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 4b68514..091d204 100644 --- a/src/health/health.controller.ts +++ b/src/health/health.controller.ts @@ -44,7 +44,7 @@ export class HealthController { ); return this.http.pingCheck('ethconnect', `${this.blockchain.baseUrl}/status`, { auth: httpOptions.auth, - httpsAgent: httpOptions.httpAgent, + httpsAgent: httpOptions.httpsAgent, }); }, ]);