You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by bb...@apache.org on 2017/12/08 12:57:21 UTC

mesos git commit: Added a missing include.

Repository: mesos
Updated Branches:
  refs/heads/master d142d38e3 -> f8771c7f5


Added a missing include.

A test case using SSL flags if compiling with SSL-support was added in
d142d38, but we did not include the required header.

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


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

Branch: refs/heads/master
Commit: f8771c7f5c72d8e72d0d6900cfb097c480142c18
Parents: d142d38
Author: Benjamin Bannier <bb...@apache.org>
Authored: Fri Dec 8 13:47:25 2017 +0100
Committer: Benjamin Bannier <bb...@apache.org>
Committed: Fri Dec 8 13:56:29 2017 +0100

----------------------------------------------------------------------
 src/tests/api_tests.cpp | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/f8771c7f/src/tests/api_tests.cpp
----------------------------------------------------------------------
diff --git a/src/tests/api_tests.cpp b/src/tests/api_tests.cpp
index c8855d0..3372849 100644
--- a/src/tests/api_tests.cpp
+++ b/src/tests/api_tests.cpp
@@ -32,6 +32,8 @@
 #include <process/http.hpp>
 #include <process/owned.hpp>
 
+#include <process/ssl/flags.hpp>
+
 #include <stout/gtest.hpp>
 #include <stout/jsonify.hpp>
 #include <stout/nothing.hpp>