Merge pull request #4758 from Infisical/fix/relay-instance-heartbeat

fix: add bypass for instance relay heartbeat
This commit is contained in:
Sheen
2025-10-28 02:45:33 +08:00
committed by GitHub

View File

@@ -138,6 +138,11 @@ export const injectIdentity = fp(
return;
}
// Authentication is handled on a route-level
if (req.url === "/api/v1/relays/heartbeat-instance-relay") {
return;
}
// Authentication is handled on a route-level here.
if (req.url.includes("/api/v1/workflow-integrations/microsoft-teams/message-endpoint")) {
return;