Skip to content

Commit

Permalink
fix: url in JS client
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeDecMeetsMore committed Aug 30, 2024
1 parent 86ffd41 commit cee2cf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scheduler/clients/javascript/lib/healthClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { NettuBaseClient } from './baseClient'

export class NettuHealthClient extends NettuBaseClient {
public async checkStatus(): Promise<number> {
const res = await this.get<void>('/')
const res = await this.get<void>('/healthcheck')
return res.status
}
}

0 comments on commit cee2cf1

Please sign in to comment.