You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by bm...@apache.org on 2015/06/27 03:09:59 UTC

[3/3] mesos git commit: Removed an unused variable.

Removed an unused variable.

Review: https://reviews.apache.org/r/35909


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

Branch: refs/heads/master
Commit: 649b376028505f95e9a98e6b04dce7fb2382f792
Parents: 299b082
Author: Benjamin Mahler <be...@gmail.com>
Authored: Thu Jun 25 22:57:51 2015 -0700
Committer: Benjamin Mahler <be...@gmail.com>
Committed: Fri Jun 26 18:09:26 2015 -0700

----------------------------------------------------------------------
 src/slave/slave.cpp | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/649b3760/src/slave/slave.cpp
----------------------------------------------------------------------
diff --git a/src/slave/slave.cpp b/src/slave/slave.cpp
index b3e1ccc..b859111 100644
--- a/src/slave/slave.cpp
+++ b/src/slave/slave.cpp
@@ -3332,8 +3332,6 @@ void Slave::executorTerminated(
       // the status update manager should have already cleaned up all the
       // status update streams for a framework that is terminating.
       if (framework->state != Framework::TERMINATING) {
-        StatusUpdate update;
-
         // Transition all live launched tasks.
         // TODO(vinod): Use foreachvalue instead once LinkedHashmap
         // supports it.