Question

I have created a subversion post-commit hook to send out an email everytime a commit is made.Im calling a python script from the file post-commit in /var/svn/repos/hooks .

REPOS="$1"
REV="$2"

~/svnnotify.py $REV

But the problem is that the svn commit command is taking a longer time to terminate as it waits for the python script to terminate first . Is there any way around this ?

Thank You

Was it helpful?

Solution

Try adding an ampersand (&) after the line that calls your script to put it in the background and return immediately.

OTHER TIPS

Call a batch file and in that batch file execute python script to run in the background by adding ampersand at end of command in batch file( & ).

Maybe put the update in a simple queue that gets scooped up by a script run invoked from cron and sends a message if something is sitting in the queue.

Queue could be a simple file in /tmp, an sqlite file, or a MySQL table.

If it's taking noticeably long to send the e-mail, maybe there's something up with the code in the notify script. It shouldn't take that long to put an e-email in the local mail queue.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top