Joerg Steeg edited a comment on Bug JENKINS-17292

I believe this issue can be fixed easily. In class IntegritySCM change the method initializeCMProjectMembers(APISession api) accordingly:

IntegritySCM.java
private Response initializeCMProjectMembers(APISession api) throws APIException, SQLException
{
    // Lets parse this project
    Command siViewProjectCmd = new Command(Command.SI, "viewproject");
    siViewProjectCmd.addOption(new Option("recurse"));
    siViewProjectCmd.addOption(new Option("project", siProject.getConfigurationPath()));
    // NEW LINES
    siViewProjectCmd.addOption(new Option("filter", "!pending:add"));
    siViewProjectCmd.addOption(new Option("filter", "!pending:addfromarchive"));
    siViewProjectCmd.addOption(new Option("filter", "!pending:import"));
    siViewProjectCmd.addOption(new Option("filter", "!pending:movememberto"));
    siViewProjectCmd.addOption(new Option("filter", "!pending:renameto"));
    // END NEW LINES
    MultiValue mvFields = new MultiValue(",");
    ...
    return viewRes;
}

We tested it locally at our site and the fix seems to work.

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

--
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Reply via email to