Why is this timeout hardcoded to 16? In the file o...
# general
b
Why is this timeout hardcoded to 16? In the file osquery\remote\transports\tls.cpp
Copy code
options.follow_redirects(true).always_verify_peer(verify_peer_).timeout(16);
j
16 seconds seems more reasonable for network unknowns than the original 4 seconds
b
I was wondering if it would have been a good idea to make this value configurable?
t
That's a good idea, do you mind writing a PR to turn the timeout into a flag?