This means your query is taking a longer time to return the result back to your CSP application than what it expects.
I'd recommend you to verify why it's taking so long and optimize your query, but you can also ask the CSP gateway to wait for a longer period before it times out.
// On OnPreHTTP callback method.
set %response.Timeout = 900 // this will make your application wait for the response for 900 seconds.
Note that %response.Timeout will change the timeout for the current request only.
- Log in to post comments