No response from SVN server
Whe开发者_StackOverflow社区n I make an svn commit, there is no response from the server although the commit goes through. I have tried performing the commit from different computers, and its the same issue, so it's not a problem on the client side. Do you know what could be the issue ?
If you get this message: "No response from Server", then in my opinion there is something wrong with the server. It happens sometimes when the Server is slow or it hangs, we get that message at client side. However, I believe the actual commit does not happen in the server.
Did you check the contents of the Server via a browser? See if the changes are being committed. On the other hand, if the URL doesn't open up, assume that its the problem with the server.
Since the commit goes through, you have a fine connection to the server.
Your problem seems to be with a post-commit hook script installed on the server: if such a script does not return, you won't get the final 'finished' response from the server. The commit actually succeeds in these situations, but clients still show that the commit didn't go through. An update after the commit however then shows that the commit was done, or a 'show log' also shows the new revision.
So: first check whether the commit actually succeeded (using the log and/or update), and then check the server for post-commit hook scripts that don't work properly.
精彩评论