We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f934030 commit f950817Copy full SHA for f950817
src/implementation/Client/HTTPClient/health.ts
@@ -24,11 +24,6 @@ export default class HTTPClientHealth implements IClientHealth {
24
25
// Send an event to an external system
26
async isHealthy(): Promise<boolean> {
27
- try {
28
- const result = await this.client.execute(`/metadata`);
29
- return !!result;
30
- } catch (e) {
31
- return false;
32
- }
+ return this.client.isSidecarStarted();
33
}
34
0 commit comments