Hello @Nick
The error message you are seeing indicates that the worker runtime metadata found in the deployed function app artifacts does not match the FUNCTIONS_WORKER_RUNTIME
environment variable that is set to dotnet-isolated
.
This can cause issues with the function app and may result in exceptions in the future. To solve this issue, you can try setting the FUNCTIONS_WORKER_RUNTIME
environment variable to CSharp
instead of dotnet-isolated
. This should match the worker runtime metadata found in the deployed function app artifacts and resolve the issue.
Regarding the 404 error you are seeing, it could be caused by a number of factors. One possibility is that the function URL you are using is incorrect or the function is not deployed correctly. You can try checking the function URL and make sure it is correct. You can also try redeploying the function and see if that resolves the issue.
If the issue persists, you can try enabling logging for your function app and check the logs to see if there are any errors or exceptions that could be causing the issue.
This should get you started