Mercury - Hudson log filling
Posted by peterm95018 on May 30, 2011 at 3:28pm
Over the past month, I have observed that my mercury instance has stopped twice; about 14 days apart. In both cases the culprit appears to be that the hudson log is filling. From my syslog:
hudson: failed to write(client_errfd = 5): File too largeIf I move the /var/log/hudson/hudson.log and restart the server, everything comes back properly.
For the time being, I'm turning Hudson log level to off. Here's a link that might help someone else: http://wiki.hudson-ci.org/display/HUDSON/Logging.
Any other tweaks I should consider?
Peter
Read moreMercury 1.1: has_js cookie and Varnish
Posted by Anonymous on May 14, 2011 at 3:46pm
Hi,
I successfully update my server from Ubuntu 9.04 & Mercury 1 to Ubuntu 10 LTS & Mercury 1.1,
but I notice that on the new Varnish default.vlc there is no has_js cookie bypass. Is it not useful anymore?
Mercury 1
// Remove has_js and Google Analytics cookies.
set req.http.Cookie = regsuball(req.http.Cookie, "(^|;\s*)(__[a-z]+|has_js)=[^;]*", "");Mercury 1.1
// Remove Google Analytics cookies.
set req.http.Cookie = regsuball(req.http.Cookie, "(^|;\s*)(__[a-z]+)=[^;]*", "");