I have a python script to download source code from a list of repositories, some of them are big.
Sometimes, svn hangs in the middle of a check out. Is there a way to watch over svn process, and so I know it is hang or not?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use PySVN, and register a callback for each “event” processes. PySVN can also poll a “cancel” callback. The first callback could start a timer, and if the timer expires, you can do tell the “cancel” callback to return False, thus cancelling the checkout.