Fix stub wrong function name

This commit is contained in:
Owen
2026-04-21 21:54:46 -07:00
parent c24db3df0e
commit e2814517d6
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ export async function fireHealthCheckHealthyAlert(
return; return;
} }
export async function fireHealthCheckNotHealthyAlert( export async function fireHealthCheckUnealthyAlert(
orgId: string, orgId: string,
healthCheckId: number, healthCheckId: number,
healthCheckName?: string, healthCheckName?: string,

View File

@@ -102,7 +102,7 @@ export async function fireHealthCheckUnhealthyAlert(
}); });
} catch (err) { } catch (err) {
logger.error( logger.error(
`fireHealthCheckNotHealthyAlert: unexpected error for healthCheckId ${healthCheckId}`, `fireHealthCheckUnhealthyAlert: unexpected error for healthCheckId ${healthCheckId}`,
err err
); );
} }