Thanks!
Others;
Thinking of a patch for this which can go into mainline.
Is it "clean" enough to just wrap the syslog call in eval {}?
Personally I'd prefer that over requiring a newer version of
Sys::Syslog, but I worry about folks' ick meters :)
-Dormando
Hemant Bist wrote:
Just in case anyone else is running into this, following changes work
for me.
1) upgrade to to Version 0.18 of Sys::Syslog, and
2) use the nofatal option in MogileFS::Server.pm <http://Server.pm>.
Diff Below.
109c109
< Sys::Syslog::openlog('mogilefsd', 'pid,nofatal', 'daemon');
---
> Sys::Syslog::openlog('mogilefsd', 'pid', 'daemon');
Dormando, Thanx a lot for pointing me to the fix.
HB