the issue I'm having is I'm confused if mTLS is actually being used for these requests or not
the issue I'm having is I'm confused if mTLS is actually being used for these requests or not
wrangler.toml:waitUntil expects a Promisevoid is fine, but you don't have anything to await there so it'll just kill the fetch

--remote mode, then yes, it shouldconst ip = request.headers.get("CF-Connecting-IP");export default {
async scheduled(event, env, ctx) {
ctx.waitUntil(task());
},
};
function task() {
fetch(
'https://canary.discord.com/api/webhooks/:id/:token',
{
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
content: 'test',
}),
}
);
}name = ...
main = ...
compatibility_date = ...
[triggers]
crons = [ "* * * * *" ]