listfolder/longpoll endpoint on Java API gets SocketTimeOut.
This is understandable, since in:
com.dropbox.core.http.HttpRequestor
You have set the connection read timeout to 20 seconds while at server side you have declared 30 secs in docs.
A dirty workaround is to subclass StandardHTTPRequestor but ideally would like to have this "just" work. Also, having different connection timeouts based on request type would not hurt...
I wonder how what kind of tests have been made on Java SDK? Anyway, if this longpoll stuff is not properly tested, what is your policy for standard polling? I already implemented and tested that for my app so would like to use that instead if longpoll is going to be fragile.