Skip to content

Commit ba54b2f

Browse files
committed
Seeing if the problem is with the authorizer
1 parent d412c48 commit ba54b2f

File tree

1 file changed

+1
-0
lines changed
  • functions/authorizers/githubWebhookIPValidator/src

1 file changed

+1
-0
lines changed

functions/authorizers/githubWebhookIPValidator/src/main.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ export const handler = async (
1515
const token = (await githubAuth()) as string;
1616
const ips = (await getGitHubIpRange(token)) as hookIPAddress;
1717
const isAuthorized = (await checkIPs(ips, sourceIP)) as boolean;
18+
console.log(isAuthorized);
1819
return {
1920
isAuthorized,
2021
};

0 commit comments

Comments
 (0)