Re: [libvirt] [PATCH] util: virExec: Dispatch all errors raised after fork

2010-07-02 Thread Cole Robinson
On 06/30/2010 05:02 PM, Eric Blake wrote: On 06/30/2010 02:38 PM, Cole Robinson wrote: Any error message raised after the process has forked needs to be followed by virDispatchError, otherwise we have no chance of ever seeing it. This was selectively done for hook functions in the past, but

[libvirt] [PATCH] util: virExec: Dispatch all errors raised after fork

2010-06-30 Thread Cole Robinson
Any error message raised after the process has forked needs to be followed by virDispatchError, otherwise we have no chance of ever seeing it. This was selectively done for hook functions in the past, but really applies to all post-fork errors. Signed-off-by: Cole Robinson crobi...@redhat.com ---

Re: [libvirt] [PATCH] util: virExec: Dispatch all errors raised after fork

2010-06-30 Thread Eric Blake
On 06/30/2010 02:38 PM, Cole Robinson wrote: Any error message raised after the process has forked needs to be followed by virDispatchError, otherwise we have no chance of ever seeing it. This was selectively done for hook functions in the past, but really applies to all post-fork errors.