Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
2.11
-
None
-
None
Description
In RestJiraDownloader the JQL query is created as such:
String jqlQuery = new JqlQueryBuilder( log ).urlEncode( false ).project( jiraProject ).fixVersion(getFixFor() ).fixVersionIds( resolvedFixVersionIds ).statusIds( resolvedStatusIds ).priorityIds( resolvedPriorityIds ).resolutionIds( resolvedResolutionIds ).components( resolvedComponentIds ).typeIds( resolvedTypeIds ).sortColumnNames( sortColumnNames ).build();
As you can see, the filter method isn't called (unlike the ClassicJiraDownloader). This makes the user unable to specify specific JQL.
I feel like the best solution is if the filter attribute is valued then it creates a completely separate JQL query so it doesn't use any defaults.
Either way, it seems like one should be able to use the filter attribute in some way.