Skip to content

Commit

Permalink
chore: skip healthcheck api
Browse files Browse the repository at this point in the history
  • Loading branch information
sbansla committed Jan 16, 2024
1 parent caf0f9e commit 329a09a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/services/twilio-api/api-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ class TwilioApiBrowser {

Object.values(domains).forEach((spec) => {
Object.values(spec.paths).forEach((path) => {
if (path === '/healthcheck') return;
// Naive assumption: The Twilio APIs only have a single server.
path.server = path.servers[0].url;
delete path.servers;
Expand Down

0 comments on commit 329a09a

Please sign in to comment.