On Mar 14, 2009, at 10:06 PM, Akara Sucharitakul wrote:
William Sobel wrote:
Completed tasks for release on monday. There are a few issues with
the current driver. Attend sometimes says you are already
attending. This could be a race condition, but seems unlikely. The
strange thing is it usually works. This is not fatal and we can
release with the warning.
There are many annoying redirection messages. It would be nice for
faban to handle redirections properly.
Can you please provide samples of these messages? Thanks.
Check out the latest runs:
http://r3.millennium.berkeley.edu:9980/
The message is coming from here (HttpMethodBase.java:1111)
private boolean processRedirectResponse(HttpConnection conn) {
if (!getFollowRedirects()) {
LOG.info("Redirect requested but followRedirects is "
+ "disabled");
return false;
}
The problem is when the redirect is processed it should turn itself
into a GetMethod, but since it is a PostMethod it posts again to a get
URI. The upshot is an error from Rails routing and a 405. I'm not sure
if you upgraded from 2.0.1 to 4.0.x it would be fixed, I haven't had
time to check the latest releases of httpclient.
Removing the logging would at least make the logs much cleaner.
Cheers,
- Will Sobel