I am using Vercel’s Postgres integration, and the environment variables are directly imported into my project. However, I am unable to edit them. Due to large batch sizes, the execution times out, and I would like to add the ?connect_timeout=xy parameter to address this issue.
Can you provide guidance on how to add this parameter?
Hey @rmtcd! You can set a ?connect_timeout=x parameter by appending it to the connection string variable. So you would essentially do something like process.env.CONNECTION_STRING + '?connect_timeout=0' and assign that value to a variable in the app.