문제

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

도움이 되었습니까?

해결책

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

다른 팁

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top