You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by bo...@apache.org on 2015/01/06 21:54:31 UTC

[1/3] storm git commit: Check the return value of fts_close().

Repository: storm
Updated Branches:
  refs/heads/master cc19d434c -> b9fb83849


Check the return value of fts_close().


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/64b0d828
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/64b0d828
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/64b0d828

Branch: refs/heads/master
Commit: 64b0d828b1c2c445ecda45622fbc57f4f7756f1e
Parents: 66be747
Author: Muneyuki Noguchi <no...@gmail.com>
Authored: Mon Dec 29 04:33:03 2014 +0000
Committer: Muneyuki Noguchi <no...@gmail.com>
Committed: Mon Dec 29 05:02:40 2014 +0000

----------------------------------------------------------------------
 storm-core/src/native/worker-launcher/impl/worker-launcher.c | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/64b0d828/storm-core/src/native/worker-launcher/impl/worker-launcher.c
----------------------------------------------------------------------
diff --git a/storm-core/src/native/worker-launcher/impl/worker-launcher.c b/storm-core/src/native/worker-launcher/impl/worker-launcher.c
index 81d7075..5115ea5 100644
--- a/storm-core/src/native/worker-launcher/impl/worker-launcher.c
+++ b/storm-core/src/native/worker-launcher/impl/worker-launcher.c
@@ -510,6 +510,10 @@ int setup_stormdist_dir(const char* local_dir) {
       }
     }
     ret = fts_close(tree);
+    if (exit_code == 0 && ret != 0) {
+      fprintf(LOGFILE, "Error in fts_close while setting up %s\n", local_dir);
+      exit_code = -1;
+    }
     free(paths[0]);
     paths[0] = NULL;
   }


[3/3] storm git commit: Added STORM-610 to changelog

Posted by bo...@apache.org.
Added STORM-610 to changelog


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/b9fb8384
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/b9fb8384
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/b9fb8384

Branch: refs/heads/master
Commit: b9fb838490ca78c9c3a370ab3a5ff2c6a41a8dab
Parents: c3ffc67
Author: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Authored: Tue Jan 6 14:46:57 2015 -0600
Committer: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Committed: Tue Jan 6 14:46:57 2015 -0600

----------------------------------------------------------------------
 CHANGELOG.md | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/b9fb8384/CHANGELOG.md
----------------------------------------------------------------------
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 50c0d35..97e0d2c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -18,6 +18,7 @@
  * STORM-613: Fix wrong getOffset return value
  * STORM-612: Update the contact address in configure.ac
  * STORM-611: Remove extra "break"s
+ * STORM-610: Check the return value of fts_close()
 
 ## 0.9.3-rc2
  * STORM-558: change "swap!" to "reset!" to fix assignment-versions in supervisor


[2/3] storm git commit: Merge branch 'check-rv-fts_close' of https://github.com/mnogu/incubator-storm into STORM-610

Posted by bo...@apache.org.
Merge branch 'check-rv-fts_close' of https://github.com/mnogu/incubator-storm into STORM-610

STORM-610: Check the return value of fts_close()


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/c3ffc67a
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/c3ffc67a
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/c3ffc67a

Branch: refs/heads/master
Commit: c3ffc67af523959399554e8dd53a619141f0f798
Parents: cc19d43 64b0d82
Author: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Authored: Tue Jan 6 14:46:19 2015 -0600
Committer: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Committed: Tue Jan 6 14:46:19 2015 -0600

----------------------------------------------------------------------
 storm-core/src/native/worker-launcher/impl/worker-launcher.c | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/c3ffc67a/storm-core/src/native/worker-launcher/impl/worker-launcher.c
----------------------------------------------------------------------