Getting blocked when trying to deploy worker

I came across an interesting issue just now. I tried to deploy my worker with some new code so i clicked on the Deploy button. Then the message "API Request Failed: PUT /api/v4/accounts/ACCOUNT ID/workers/services/forwardreleases/environments/production?include_subdomain_availability=true (403)" came up. So i checked in the Network tab of my Browser to see what's going on and it seems like i am getting blocked by cloudflare? At least i see it when i visualize the html it returns i get this what's shown in the screenshot. Ray ID is:
929a2fba1c461c05
929a2fba1c461c05
I tried: - Reloading page - Clear Browser cache - Clear cookies - Log in and out - Creating a fresh new worker (Code doesn't work there either) I found out that apparently it has to do something with the code i submitted. (Hello world code works fine) I am very sure that this is not malicious code in any way since it simply receives a webhook request from github -> formats it -> sends it to discord via webhook.
No description
1 Reply
The_Cookie
The_CookieOP2d ago
Just saw this: https://discord.com/channels/595317990191398933/895794943182909470/1356675390457905162 I guess that's the problem but ill keep this open to see if the issue persists after it has been resolved. Still doesn't seem to work :( Okay i found the Issue: It doesn't like the the word discord is mentioned in the response
return new Response(`Failed to send webhook: ${errorMessage}. Details: ${JSON.stringify(discordMessage)}`, { status: 500 });
return new Response(`Failed to send webhook: ${errorMessage}. Details: ${JSON.stringify(discordMessage)}`, { status: 500 });
Changed to
return new Response(`Failed to send webhook: ${errorMessage}. Details: ${JSON.stringify(messageContent)}`, { status: 500 });
return new Response(`Failed to send webhook: ${errorMessage}. Details: ${JSON.stringify(messageContent)}`, { status: 500 });
its very weird

Did you find this page helpful?