Skip to content

Commit

Permalink
Closes OOZIE-135 incorporated review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Chao Wang committed Aug 17, 2011
1 parent ca6cab0 commit d30d063
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public XConfiguration createProtoActionConf(Configuration jobConf, String authTo

String[] libPaths = jobConf.getStrings(OozieClient.LIBPATH);
if (libPaths != null && libPaths.length > 0) {
for (int i=0; i<libPaths.length; i++) {
for (int i = 0; i < libPaths.length; i++) {
if (libPaths[i].trim().length() > 0) {
Path libPath = new Path(libPaths[i].trim());
List<String> libFilePaths = getLibFiles(fs, libPath);
Expand Down
1 change: 1 addition & 0 deletions release-log.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
-- Oozie 3.1.0 release

OOZIE-135 support multiple shared lib path in oozie
OOZIE-6 Custom filters option and User information column added to Coordinator jobs section of Oozie Web Console
OOZIE-124 Update documentation for job-type in WS API
OOZIE-81 Add an email action to Oozie
Expand Down

1 comment on commit d30d063

@mislam77-zz
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1 will push.

Please sign in to comment.