On Thu, Nov 25, 2010 at 12:18 PM, Frank Batschulat
<frank.batschu...@oracle.com> wrote:
> [hooks]
> changegroup.update = /builds/batschul/zoss-gate/zoss-merge/.hg/incoming-hook

> the hook does email and this:

> # Update the repository working image to the tip
> hg update

So,.... you have a hook for 'update' which would be called roughly when you did:

hg update

and that hook runs a script which is called 'incoming-hook', which
seems misnamed.

that hook then calls hg update. which is where you were when you
triggered the hook.

It seems more likely that your hook was supposed to be
changegroup.incoming = ...

Basically the hook ran while holding the repository lock and tried to
trigger itself which failed (which is good since you were trying to
trigger infinite recursion).
_______________________________________________
tools-discuss mailing list
tools-discuss@opensolaris.org

Reply via email to