You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by me...@apache.org on 2016/12/13 19:53:27 UTC

mesos git commit: Fixed bug that prevented window size updates in the IOSwitchboard.

Repository: mesos
Updated Branches:
  refs/heads/master 6cee5cb0e -> 3fdd7be0b


Fixed bug that prevented window size updates in the IOSwitchboard.

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


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

Branch: refs/heads/master
Commit: 3fdd7be0b921aedaa375a1e74687adf9ceb05f73
Parents: 6cee5cb
Author: Kevin Klues <kl...@gmail.com>
Authored: Tue Dec 13 11:51:57 2016 -0800
Committer: Adam B <ad...@mesosphere.io>
Committed: Tue Dec 13 11:51:57 2016 -0800

----------------------------------------------------------------------
 src/slave/containerizer/mesos/io/switchboard.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/3fdd7be0/src/slave/containerizer/mesos/io/switchboard.cpp
----------------------------------------------------------------------
diff --git a/src/slave/containerizer/mesos/io/switchboard.cpp b/src/slave/containerizer/mesos/io/switchboard.cpp
index 402a4d6..c806279 100644
--- a/src/slave/containerizer/mesos/io/switchboard.cpp
+++ b/src/slave/containerizer/mesos/io/switchboard.cpp
@@ -1517,7 +1517,7 @@ Future<http::Response> IOSwitchboardServerProcess::attachContainerInput(
 
         switch (message.type()) {
           case agent::ProcessIO::CONTROL: {
-            switch (message.type()) {
+            switch (message.control().type()) {
               case agent::ProcessIO::Control::TTY_INFO: {
                 // TODO(klueska): Return a failure if the container we are
                 // attaching to does not have a tty associated with it.