Skip to content

Commit

Permalink
cloud_functions: add missing return 200
Browse files Browse the repository at this point in the history
  • Loading branch information
panoel committed Sep 6, 2023
1 parent bc56f79 commit e87452a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cloud_functions/src/alarmMissingVaas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export async function alarmMissingVaas(req: any, res: any) {
console.log('could not get missing VAAs', e);
res.sendStatus(500);
}
res.status(200).send('successfully alarmed missing VAAS');
return;
}

Expand Down

0 comments on commit e87452a

Please sign in to comment.