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 2014/09/11 06:24:59 UTC

[1/2] git commit: Added support for catching trailing white spaces in the style checker.

Repository: mesos
Updated Branches:
  refs/heads/master 7095fc384 -> 60dd10cfb


Added support for catching trailing white spaces in the style checker.

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


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

Branch: refs/heads/master
Commit: 60dd10cfb8aef1ae661d17bd3d28f0596b731ff3
Parents: eea12a6
Author: Kamil Domanski <kd...@kdemail.net>
Authored: Wed Sep 10 21:20:03 2014 -0700
Committer: Vinod Kone <vi...@gmail.com>
Committed: Wed Sep 10 21:24:15 2014 -0700

----------------------------------------------------------------------
 support/mesos-style.py | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/60dd10cf/support/mesos-style.py
----------------------------------------------------------------------
diff --git a/support/mesos-style.py b/support/mesos-style.py
index d24cb11..b65272b 100755
--- a/support/mesos-style.py
+++ b/support/mesos-style.py
@@ -17,6 +17,7 @@ active_rules = ['build/class',
                 'runtime/vlog',
                 'whitespace/blank_line',
                 'whitespace/comma',
+                'whitespace/end_of_line',
                 'whitespace/ending_newline',
                 'whitespace/forcolon',
                 'whitespace/indent',


[2/2] git commit: Fixed trailing whitespace in libprocess.

Posted by vi...@apache.org.
Fixed trailing whitespace in libprocess.


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

Branch: refs/heads/master
Commit: eea12a6820a4942243c6e62bc4fd862b2044002a
Parents: 7095fc3
Author: Vinod Kone <vi...@gmail.com>
Authored: Wed Sep 10 21:23:56 2014 -0700
Committer: Vinod Kone <vi...@gmail.com>
Committed: Wed Sep 10 21:24:15 2014 -0700

----------------------------------------------------------------------
 3rdparty/libprocess/src/httpd.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/eea12a68/3rdparty/libprocess/src/httpd.cpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/src/httpd.cpp b/3rdparty/libprocess/src/httpd.cpp
index 4f4ab1b..eab3aa5 100644
--- a/3rdparty/libprocess/src/httpd.cpp
+++ b/3rdparty/libprocess/src/httpd.cpp
@@ -92,7 +92,7 @@ public:
     parser.on_message_complete  = NULL;
 
     http_parser_execute(&parser, raw.c_str(), raw.length());
-    
+
     if (http_parser_has_error(&parser)) {
       //cerr << "parser error" << endl;
       abort();