UI needs an API explaining why a function isn't indexed or is returning 404
See original GitHub issueCurrently the UI queries a function’s keys. If that fails for any reason, we query the function status, if that also fails, we query the host status.
However we still have cases where keys is 404, status is 404, and host status is 200 no errors. More logs and analysis are included in an email with subject [Azure/Azure-Functions] Getting error: "We are not able to retrieve the keys for function "
Of course part of the problem stems from having 2 parts interpreting what a function is (kudu and the runtime)
Issue Analytics
- State:
- Created 6 years ago
- Comments:15 (11 by maintainers)
Top Results From Across the Web
REST API 404: Bad URI, or Missing Resource?
404 means that nothing exists at that URI (like an undefined variable in programming). Returning 200 with an empty body means that something ......
Read more >How to troubleshoot Azure Function HTTP Trigger 404 Error
Any mismatch in the function name or URL path can result in a 404 error. This could be due to a typo in...
Read more >Bitbucket Server or Data Center displays a 404 error when ...
When attempting to access a repository, Bitbucket displays a 404 error page stating that " No repository with slug <REPOSITORY_SLUG> exists ...
Read more >When to use HTTP status code 404 in an API
You use 404 if the resource is not found, not when there's no entity. Put it in another way, if you want to...
Read more >Not Found (404) Handling
When a document isn't found on a web server, it should send a 404 status code. This indicates to machines that the document...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Totally, and I should definitely take the time to note that while what I’m saying seems quite critical, it’s in the hopes of helping improve the platform. It’s no good if everyone just walks away without offering input.
@atrauzzi: @mamaso investigated and found that you are setting the
functions
property in your host.json, which causes all other functions to be ignored (see https://github.com/Azure/azure-webjobs-sdk-script/wiki/host.json). Do you remember doing that, or did that somehow get set by some tool or something else?