Sergey Shepelev
Sergey Shepelev
This patch is required to work with stock OrangePi images. Please merge.
@pratikdhanavesearce not a maintainer in this project, just added a simple tool guided patch. Dependabot says you are using version before 1.3.2. So you should upgrade to 1.3.2. ``` go...
Same problem: https://github.com/eventlet/eventlet/issues/616 @terryzhu suggested this workaround ```diff def setblocking(self, v): + if self._timeout == v: + return if v: self.settimeout(None) else: self.settimeout(0.0) ``` I think, pysocks should use existing...
@bebehei ping on progress. @x2b could systemd `[Unit] After` be used to control concurrency?
Sorry for stepping in without invitation, I wish they removed "contextvars don't work with eventlet" warning from docs.
@rhcarvalho @lobsterkatie @iker-barriocanal @AbhiPrasad would you please look at this? Awesome patch. The problem worked around with `_is_contextvars_broken` function has long been fixed in greenlet lib.
If you use not ancient PostgreSQL, you can do `insert into ... returning ` and read it like normal `select` statement, e.g. `Scan()`.
I guess there is no way without fetching table structure. And even then you can't do anything for table like `id1 serial, id2 serial, primary key (id1, id2)`. Basically, `LastInsertId`...
@brian-armstrong `poll` syscall could fix timeout granularity problem. Thanks for (maybe best to date?) GPIO library with edge event support.