On Wed, Apr 20, 2016 at 6:28 AM, David Turner <dtur...@twopensource.com> wrote:
> @@ -317,6 +320,8 @@ int main(int argc, char **argv)
>         if (fd < 0)
>                 die_errno(_("could not set up index-helper socket"));
>
> +       if (detach && daemonize(&daemonized))
> +               die_errno(_("unable to detach"));

At the least, I think we need to redirect both stdout and stderr to a
file, so we can catch errors. The watchman patch uses warning() to
report errors, for example. And there is always a chance of die().

Then we need to report the errors back. I faced the same problem with
daemonizing git-gc, but I'm not sure if we can do exactly the same
here like in commit 329e6e8 (gc: save log from daemonized gc --auto
and print it next time - 2015-09-19)
-- 
Duy
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to