DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6414>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6414 Performance Enhancement for P4 Label task Summary: Performance Enhancement for P4 Label task Product: Ant Version: 1.4.1 Platform: All OS/Version: All Status: NEW Severity: Normal Priority: Other Component: Optional Tasks AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] We noticed that the p4label task is not very efficient when it is doing the perforce label sync. According to my admin, the p4 labelsync command should include the view in the executeP4Command method. The labelsync command apparently does some intersection with the client view as well as the label files. We noticed this problem because our depot is very large. My change was the following... -- execP4Command("labelsync -l " + name + " " + P4View, new P4HandlerAdapter() { public void process(String line) { log(line, Project.MSG_VERBOSE); } }); -- -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
