Replies: 5 comments 10 replies
-
I haven't seen an error like this before. Have you tried deploying to Functions and does the container work there? Or does the error only happen when the container is run locally? |
Beta Was this translation helpful? Give feedback.
-
Another thing you can try is to use the |
Beta Was this translation helpful? Give feedback.
-
Looks like a networking issue for me, but I'm not sure how to solve it. @anthonychu might be able to help. |
Beta Was this translation helpful? Give feedback.
-
I am having a similar Timeout issue with Azure function running the plumber --->> After running the docker run command I have added the screenshot to show the dockerfile & host.json code. |
Beta Was this translation helpful? Give feedback.
-
I also am having the same issue. The function runtime is not able to communicate w/ or forward requests to the customerHandler, nor can I manually hit the plumber api endpoint via a browser directly. I connected to the docker container terminal window to manually start and wire up plumber. That went ok without error. It runs on port 8080, but no requests seem to go through/hit it. They 404.
Same as rhuettl. I can see the http request come in via the trace, but then 404. I've tried different Microsoft.Azure.Functions.ExtensionBundle versions, different azure function base image versions to no avail. |
Beta Was this translation helpful? Give feedback.
-
Hi David, hi all,
Thank you for the sample and ideas. I'm just facing a strange problem when I build the container and test locally (a test via func start --custom and a test in R is working fine without issues).
I tried all kind of things but I don't find the problem. Maybe it has something to do that the port or request forwarding to plumber is not working as expected:
Calling the function in a browser is giving a 404 result back (but as mentioned before, just within the docker test, all other tests without docker are working successful):
![image](https://user-images.githubusercontent.com/23125000/102849250-07290f00-4417-11eb-8c6b-4c2d7e56e020.png)
And the log is then looking like:
![image](https://user-images.githubusercontent.com/23125000/102849152-d1842600-4416-11eb-8c31-d35beb7172b1.png)
Here's the trace log:
![image](https://user-images.githubusercontent.com/23125000/102853813-5c6a1e00-4421-11eb-9b7e-9d39871c8779.png)
So the Azure function has been called but not the plumber function as itself. Looking like the plumber API / request isn't coming through...
Any idea would be helpful :-)
Thank you in advance,
Ralf
Beta Was this translation helpful? Give feedback.
All reactions