[
https://issues.apache.org/jira/browse/OOZIE-2225?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15438606#comment-15438606
]
Robert Kanter commented on OOZIE-2225:
--------------------------------------
I haven't had a chance to try it out yet, but here's a few comments from going
through the code:
- Update the CLI/Oozie client and to be able to use this
- Update the Web Services and CLI docs
- Why do we need to change {{valArray}} from {{List<String>}} type to
{{List<Object>}} type?
- In a few of the tests, you use the below pattern. You should put a
{{fail("msg")}} after the {{jpaService}} call in case it doesn't throw an
{{Exception}} we'll want to fail the test.
{code:java}
+ try{
+ jpaService.execute(bundleInfoGetCmd);
+ } catch (XException e) {
+ assertEquals(ErrorCode.E0302, e.getErrorCode());
+ }
{code}
> Add wild card filter for gathering jobs
> ---------------------------------------
>
> Key: OOZIE-2225
> URL: https://issues.apache.org/jira/browse/OOZIE-2225
> Project: Oozie
> Issue Type: Improvement
> Components: core
> Affects Versions: 4.1.0
> Reporter: Sai Chirravuri
> Assignee: Sai Chirravuri
> Attachments: OOZIE-2225-001.patch, OOZIE-2225-002.patch,
> OOZIE-2225-003.patch, OOZIE-2225-004.patch
>
>
> Oozie currently supports name, user, group, status, frequency and unit as
> filter params.
> Add wild card param that matches partially with name/user or complete match
> with ID
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)