Thank you @AJR! - For SQL Inserts, Updates, Deletes, we're using transactions , doing `client.query(
Thank you @AJR!
- For SQL Inserts, Updates, Deletes, we're using transactions , doing
client.query('BEGIN')andclient.query('COMMIT")- We are getting some unrelated DB errors (e.g. pg duplicate key errors) and perhaps this is causing that Hyperdrive connection to hang? We are not calling
for Hyperdrive (upon success or error) based on this old hyperdrive in May, but it looks like now the Hyperdrive docs for pg actually do recommend cleaning up the client now?ctx.waitUntil(client.end())
- We are getting some unrelated DB errors (e.g. pg duplicate key errors) and perhaps this is causing that Hyperdrive connection to hang? We are not calling
- Regarding the second question - there are a few internal processes that might be long-running, we'll take a look at this.

