Replies: 2 comments 6 replies
-
You are using async. The issues you linked are from a time when Microdot supported sync natively and async through an extension. In the current version the internals were redesigned so that the core is async, and sync options can only be used in platforms that have threads such as CPython (none of which applies to your board). Questions:
|
Beta Was this translation helpful? Give feedback.
5 replies
-
@Tavaru5 I ran your code on an ESP32 and a Pico W and it runs fine. Keeps responding to all the curl requests I send. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a similar issue to #166 / #89, where my server seems to be hanging after the first request/response. My issue is that I'm already using async (or at least I believe I am), so I'm not sure why I would still be having this issue. I'm using micropython, then testing it with postman. It's loosely based off of the gpio example, but slimmed down a lot.
My code looks like this:
Any insight on why this is happening would be appreciated, I'm not sure if there's something obvious that I'm missing since I'm not super familiar with python.
Beta Was this translation helpful? Give feedback.
All reactions