You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, the same timeout option, ConnectionOptions::OPTION_TIMEOUT, is used both when establishing the socket (as expected) and for stream_set_timeout() in HttpHelper::createConnection().
Ideally I'd set the former to something short, like 3 seconds, and the latter to something longer, like 10 seconds in order to account for longer-running queries. Currently, I need to set the higher value for both.
Should there be an additional option along the lines of ConnectionOptions::OPTION_READ_TIMEOUT?