Rob Haswell

Results 21 comments of Rob Haswell

> I have an intel Mac not an m2 It seems that the issue is present on Intel macs as well.

I can confirm that this issue is still present in RC2.

Any updates? I have to say, the poor progress of Python client libraries is really making me question using Google Cloud for future projects. AWS has had asyncio support for...

> ESP32 HW PWM now also working. 8 Channels on ESP32 S2 Where is the code for this, perhaps you could create a PR? I'm interested in running this on...

Thanks, I'll take a look. My ulterior motive is to submit a PR to this project which adds VTX admin, VTX arming, and potentially a very limited implementation of voltage...

> > How would you feel about those PRs? > > I don't really want them 😅 I don't want to maintain this project considering ExpressLRS supports PWM output itself...

You should be able to cancel queries using `pg_cancel_backend()`. I think the pattern looks like this: ```js const pool = pg.Pool() /* Check out a client */ pool.connect() .then((c) =>...

> if you only ever want n number of clients under all circumstance and your pool is exhausted what do you do? I think this should be left up to...

```js const client = await pool.connect() client.query('SELECT pg_sleep(1000000)') const otherClient = await pool.connect() otherClient.cancel(client) ``` About this API - does the client have a clientID property? If so, this is...