We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to set timeout for 1 query when using pg-pool?
As I see here it only check this.connectionParameters.query_timeout https://github.com/brianc/node-postgres/blob/master/packages/pg/lib/client.js#L513
this.connectionParameters.query_timeout
And if I use pool.query(...) I can't modify connectionParameters object only for 1 query
pool.query(...)
connectionParameters
btw what is a meaning of if (typeof config.submit === 'function') (line 506)
if (typeof config.submit === 'function')
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is it possible to set timeout for 1 query when using pg-pool?
As I see here it only check
this.connectionParameters.query_timeout
https://github.com/brianc/node-postgres/blob/master/packages/pg/lib/client.js#L513
And if I use
pool.query(...)
I can't modifyconnectionParameters
object only for 1 querybtw what is a meaning of
if (typeof config.submit === 'function')
(line 506)The text was updated successfully, but these errors were encountered: