Skip to content

Commit 9e413c7

Browse files
committed
fix(discord-bot): correct healthCheck URL with api
1 parent aab8260 commit 9e413c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client/LicenseChainClient.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ class LicenseChainClient {
336336
*/
337337
async healthCheck() {
338338
try {
339-
const response = await this.client.get('/health');
339+
const response = await this.client.get('/v1/health');
340340
return response.data;
341341
} catch (error) {
342342
throw new Error(`Health check failed: ${error.message}`);

0 commit comments

Comments
 (0)