A recent JIRA upgrade appears to have broken a Subversion post-commit hook that I have had in place for a number of years. This hook was working in tandem with the Commit Acceptance plugin (v1.6.0). The python script was using xmlrpc (http://[base]/jira/rpc/xmlrpc
) in the URL being called here:
# invoke JIRA web service
xmlrpcUrl = jiraBaseURL + 'jira/rpc/xmlrpc'
try:
s = xmlrpclib.ServerProxy(xmlrpcUrl)
acceptance, comment = s.commitacc.acceptCommit(jiraLogin, jiraPassword, author, projectKey, message).split('|');
except:
acceptance, comment = ['false', 'Unable to connect to the JIRA server at "' + xmlrpcUrl + '".']
I noted in the JIRA upgrade documentation that the use of rpc/xmlrpc is to be deprecated, though I assume that an update to the plugin would accommodate that.
In the meantime however, this hook is essential to our QA measures. How do I reinstantiate this functionality?
David, the Commit Policy Plugin is an alternative to the Commit Acceptance Plugin (with quite some major improvements).
One of the differences that it is using the REST API, so that it will work for 6.3 and especially for the JIRA 7 line (where the XMLRPC API is not just deprecated, but totally removed).
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.