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/11/05 21:43:16 UTC

[1/3] storm git commit: removes noisy log message & a TODO

Repository: storm
Updated Branches:
  refs/heads/master 316b23ec4 -> 9e2b02dcd


removes noisy log message & a TODO


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

Branch: refs/heads/master
Commit: 2b859fb02db965ea7a68bd69c667526913cf6711
Parents: f3568d7
Author: Derek Dagit <de...@zorchclean-lm.champ.corp.yahoo.com>
Authored: Wed Nov 4 11:08:54 2015 -0600
Committer: Derek Dagit <de...@zorchclean-lm.champ.corp.yahoo.com>
Committed: Wed Nov 4 11:08:54 2015 -0600

----------------------------------------------------------------------
 storm-core/src/native/worker-launcher/impl/worker-launcher.c | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/2b859fb0/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 3a6c4b8..d626e48 100644
--- a/storm-core/src/native/worker-launcher/impl/worker-launcher.c
+++ b/storm-core/src/native/worker-launcher/impl/worker-launcher.c
@@ -491,8 +491,6 @@ int setup_stormdist_dir(const char* local_dir) {
       case FTS_F:         // A regular file
       case FTS_SL:        // A symbolic link
       case FTS_SLNONE:    // A broken symbolic link
-        //TODO it would be good to validate that the file is owned by the correct user first.
-        fprintf(LOGFILE, "visiting: %s\n", entry->fts_path);
         if (setup_stormdist(entry, euser) != 0) {
           exit_code = -1;
         }


[2/3] storm git commit: Merge branch 'storm-1168-worker-launcher-msgs' of https://github.com/d2r/storm into STORM-1168

Posted by bo...@apache.org.
Merge branch 'storm-1168-worker-launcher-msgs' of https://github.com/d2r/storm into STORM-1168

STORM-1168: removes noisy log message & a TODO


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

Branch: refs/heads/master
Commit: 7a8e6ca18eb16c86bf8413f1b78c7857cf2aa9d0
Parents: 316b23e 2b859fb
Author: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Authored: Thu Nov 5 14:42:14 2015 -0600
Committer: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Committed: Thu Nov 5 14:42:14 2015 -0600

----------------------------------------------------------------------
 storm-core/src/native/worker-launcher/impl/worker-launcher.c | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


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


[3/3] storm git commit: Added STORM-1168 to Changelog

Posted by bo...@apache.org.
Added STORM-1168 to Changelog


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

Branch: refs/heads/master
Commit: 9e2b02dcdcac319b3107f6c0270cc26f2063dfa8
Parents: 7a8e6ca
Author: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Authored: Thu Nov 5 14:42:40 2015 -0600
Committer: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Committed: Thu Nov 5 14:42:40 2015 -0600

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


http://git-wip-us.apache.org/repos/asf/storm/blob/9e2b02dc/CHANGELOG.md
----------------------------------------------------------------------
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 54fdd15..279b247 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,5 @@
 ## 0.11.0
+ * STORM-1168: removes noisy log message & a TODO
  * STORM-1143: Validate topology Configs during topology submission
  * STORM-1157: Adding dynamic profiling for worker, restarting worker, jstack, heap dump, and profiling
  * STORM-1123: TupleImpl - Unnecessary variable initialization.