Repository: oozie Updated Branches: refs/heads/master 91e70237e -> 086945b0b
OOZIE-2169 Fix return type for fs:dirSize, fs:fileSize and fs:blockSize in WF spec Project: http://git-wip-us.apache.org/repos/asf/oozie/repo Commit: http://git-wip-us.apache.org/repos/asf/oozie/commit/086945b0 Tree: http://git-wip-us.apache.org/repos/asf/oozie/tree/086945b0 Diff: http://git-wip-us.apache.org/repos/asf/oozie/diff/086945b0 Branch: refs/heads/master Commit: 086945b0b3378d8400c6f856a6ab43bf33e194c0 Parents: 91e7023 Author: Purshotam Shah <[email protected]> Authored: Tue Mar 17 23:37:36 2015 -0700 Committer: Purshotam Shah <[email protected]> Committed: Tue Mar 17 23:37:36 2015 -0700 ---------------------------------------------------------------------- docs/src/site/twiki/WorkflowFunctionalSpec.twiki | 6 +++--- release-log.txt | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/oozie/blob/086945b0/docs/src/site/twiki/WorkflowFunctionalSpec.twiki ---------------------------------------------------------------------- diff --git a/docs/src/site/twiki/WorkflowFunctionalSpec.twiki b/docs/src/site/twiki/WorkflowFunctionalSpec.twiki index 905055d..fb4845b 100644 --- a/docs/src/site/twiki/WorkflowFunctionalSpec.twiki +++ b/docs/src/site/twiki/WorkflowFunctionalSpec.twiki @@ -2207,16 +2207,16 @@ It returns =true= or =false= depending if the specified path URI exists or not. It returns =true= if the specified path URI exists and it is a directory, otherwise it returns =false=. -*boolean fs:dirSize(String path)* +*long fs:dirSize(String path)* It returns the size in bytes of all the files in the specified path. If the path is not a directory, or if it does not exist it returns -1. It does not work recursively, only computes the size of the files under the specified path. -*boolean fs:fileSize(String path)* +*long fs:fileSize(String path)* It returns the size in bytes of specified file. If the path is not a file, or if it does not exist it returns -1. -*boolean fs:blockSize(String path)* +*long fs:blockSize(String path)* It returns the block size in bytes of specified file. If the path is not a file, or if it does not exist it returns -1. http://git-wip-us.apache.org/repos/asf/oozie/blob/086945b0/release-log.txt ---------------------------------------------------------------------- diff --git a/release-log.txt b/release-log.txt index 274e210..dee51ab 100644 --- a/release-log.txt +++ b/release-log.txt @@ -1,5 +1,6 @@ -- Oozie 4.2.0 release (trunk - unreleased) +OOZIE-2169 Fix return type for fs:dirSize, fs:fileSize and fs:blockSize in WF spec (apivovarov via puru) OOZIE-2171 Some error code messages are not parsed correctly due to unescaped single quote (rkanter) OOZIE-2108 bulk kill, suspend, resume jobs using existing filter, offset, len, and jobtype params (bzhang) OOZIE-2167 TestCoordMaterializeTransitionXCommand fails (rkanter)
