Why am I getting this error?
Hello everyone. The scheduler is working, but I receive this error in the terminal and also in the execution logs when I deploy. How do I solve this? Thank you!
Note: This is an example from the documentation:
2 Replies
When you access the URL in your browser, the browser also tries to request
/favicon.ico
which fails because the Worker has no fetch handler and can't handle HTTP requests. You would add a basic fetch handler if you wanted it to go away, but it doesn't impact anything really. In production you can disable all the routes so that bot traffic can't trigger the error.I got it, thanks 🤝