[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: post-commit : automation

From: Ashwin Patil <ashwin.patil_at_robosoftin.com>
Date: Mon, 8 Jun 2009 09:47:04 +0530

> /usr/bin/sudo /usr/local/bin/archive_process $REPO $REV >/dev/null 2>
> dev/null &

Yes- this solved the problem Thanks.

Regards
Ashwin Patil

----- Original Message -----
From: "Ryan Schmidt" <subversion-2009b_at_ryandesign.com>
To: "Dextrous" <dextrous85_at_gmail.com>
Cc: "Ashwin Patil" <ashwin.patil_at_robosoftin.com>;
<users_at_subversion.tigris.org>
Sent: Sunday, June 07, 2009 4:09 AM
Subject: Re: post-commit : automation

>
> On Jun 6, 2009, at 06:00, Dextrous wrote:
>
>> On Sat, Jun 6, 2009 at 2:49 PM, Ashwin Patil wrote:
>>
>>> I am trying to automate some processes through the post-commit file
>>> invoke,
>>> Everything is working fine but I want it to be run in the background
>>> so
>>> that the SVN client need not wait to complete the process and but
>>> should
>>> complete the commit and exit.
>>>
>>> Basically I have a shell script say "/usr/local/bin/ archive_process"
>>> and
>>> want it to be invoke through the post-commit when a particular
>>> repository
>>> commits. All it is working fine but the client is exiting with an error
>>> "time out error" as the "/usr/local/bin/archive_process" takes long
>>> time to
>>> complete process and exit. But however commit completes properly.
>>>
>>> I tried by adding the "&" at the end of the "/usr/local/bin/
>>> archive_process"
>>> in the post-commit file but no help.
>>
>> exit 0 should solve the problem
>
> I don't think so; that should already be the default.
>
> I suspect the problem is rather that you need to close the stdout and
> stderr file handles. Otherwise the client is waiting for output to
> possibly appear. This has been mentioned on this list before. Try:
>
>
> -----------------------------post-
> commit----------------------------------
>
> #!/bin/bash
> REPO="$1"
> REV="$2"
> /usr/bin/sudo /usr/local/bin/archive_process $REPO $REV >/dev/null 2>/
> dev/null &
>
> -----------------------------end of
> ile -------------------------------------
>
>
> Also, be aware that multiple archive_process processes could now be
> running simultaneously, if multiple commits happen in quick succession.
> Make sure archive_process will function correctly in these situations.
>
>
>

-----------------------------------------------
Robosoft Technologies - Come home to Technology

Disclaimer: This email may contain confidential material. If you were not an intended recipient, please notify the sender and delete all copies. Emails to and from our network may be logged and monitored. This email and its attachments are scanned for virus by our scanners and are believed to be safe. However, no warranty is given that this email is free of malicious content or virus.

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=2360174

To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_subversion.tigris.org].
Received on 2009-06-08 06:18:33 CEST

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.