Lukas Köbis
Lukas Köbis
it would be even better to give a time stamp as an argument and sequelize undos all migrations that happened after the given time stamp use case: I want to...
Any updates? Is there a way to only disable resize animations but keep the others?
@VacaSan your fix made things slightly better but I'm still getting these laggy animations when resizing the window: https://share.getcloudapp.com/NQuD98GY Any ideas on how to fix this? Is there a way...
I ran `\COPY (SELECT * from pg_stat_activity) TO 'pg_stat_activity.csv' CSV HEADER` while my application was running (and the exceptions came in). Attached the output file. [pg_stat_activity.txt](https://github.com/malthe/pq/files/3701598/pg_stat_activity.txt)
Are the connections returned properly to the pool if my code throws an exception?
``` const oauth = getOAuthClient(); oauth.setToken(token); const authResponse = await oauth.refresh(); const newToken: QuickBooksToken = authResponse.token; // https://help.developer.intuit.com/s/article/Validity-of-Refresh-Token if (newToken.refresh_token !== token.refresh_token) { // save new token } ``` I...