Issue Type: Improvement Improvement
Assignee: Unassigned
Components: deploy
Created: 31/Dec/12 6:50 AM
Description:

Actually there was a bug in local deployer of cargo , where for tomcat 7 , we need to append "/manager/text" manually to the URI
In Tomcat7xAdapter.java (https://github.com/jenkinsci/deploy-plugin/blob/master/src/main/java/hudson/plugins/deploy/tomcat/Tomcat7xAdapter.java)

URL _url = new URL(url + "/manager/text");

config.setProperty(RemotePropertySet.URI,_url.toExternalForm()); .

This bug has been fixed by adding TomcatManager7xInstalledLocalDeployer.java class , which internally does this url appending and we need not do this manually anymore . Refer : http://jira.codehaus.org/browse/CARGO-1166

Also the undeploy now throws exception , if the file was already undeployed or there is no such application already deployed .
http://jira.codehaus.org/browse/CARGO-1167 . This is good because ,earlier it was doing undeploy even if there was no such deployed application in that name .Now after this change it tells if undeploy was really needed .

Project: Jenkins
Priority: Minor Minor
Reporter: harish Kayarohanam
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to