You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by vi...@apache.org on 2016/10/21 23:41:50 UTC

[1/2] mesos git commit: Close socket after setting flags on the interface.

Repository: mesos
Updated Branches:
  refs/heads/1.0.x 56529fa99 -> 5344b88c2


Close socket after setting flags on the interface.

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


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

Branch: refs/heads/1.0.x
Commit: 3cedb3dcb30576f52e7d56a1aaa9f6fa58e1b885
Parents: 56529fa
Author: Santhosh Kumar Shanmugham <sa...@gmail.com>
Authored: Thu Oct 20 08:54:52 2016 -0700
Committer: Vinod Kone <vi...@gmail.com>
Committed: Fri Oct 21 16:37:58 2016 -0700

----------------------------------------------------------------------
 src/linux/routing/link/internal.hpp | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/3cedb3dc/src/linux/routing/link/internal.hpp
----------------------------------------------------------------------
diff --git a/src/linux/routing/link/internal.hpp b/src/linux/routing/link/internal.hpp
index eb89b9a..be9463d 100644
--- a/src/linux/routing/link/internal.hpp
+++ b/src/linux/routing/link/internal.hpp
@@ -151,6 +151,7 @@ inline Try<bool> set(const std::string& _link, unsigned int flags)
     }
   }
 
+  os::close(fd);
   return true;
 }
 


[2/2] mesos git commit: Added MESOS-6420 to 1.0.2 CHANGELOG.

Posted by vi...@apache.org.
Added MESOS-6420 to 1.0.2 CHANGELOG.


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

Branch: refs/heads/1.0.x
Commit: 5344b88c22649d886e989d75aedcd24c6fc3d5f4
Parents: 3cedb3d
Author: Vinod Kone <vi...@gmail.com>
Authored: Fri Oct 21 16:39:51 2016 -0700
Committer: Vinod Kone <vi...@gmail.com>
Committed: Fri Oct 21 16:40:50 2016 -0700

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


http://git-wip-us.apache.org/repos/asf/mesos/blob/5344b88c/CHANGELOG
----------------------------------------------------------------------
diff --git a/CHANGELOG b/CHANGELOG
index 5789ba3..46dabb1 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -23,6 +23,7 @@ All Issues:
     * [MESOS-6324] - CNI should not use `ifconfig` in executors `pre_exec_command`
     * [MESOS-6391] - Command task's sandbox should not be owned by root if it uses container image.
     * [MESOS-6393] - Deprecated SSL_ environment variables are non functional already.
+    * [MESOS-6420] - Mesos Agent leaking sockets when port mapping network isolator is ON 
 
 ** Improvement
     * [MESOS-6075] - Avoid libprocess functions in `mesos-containerizer launch`.