Removed a stray trailing parenthesis from a validation error. Review: https://reviews.apache.org/r/61855/
Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/4b6d848e Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/4b6d848e Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/4b6d848e Branch: refs/heads/master Commit: 4b6d848e8a4ba19c5e790f40655f5be000686941 Parents: d8950a8 Author: Gaston Kleiman <gas...@mesosphere.io> Authored: Wed Oct 18 12:14:06 2017 -0700 Committer: Alexander Rukletsov <al...@apache.org> Committed: Wed Oct 18 12:14:06 2017 -0700 ---------------------------------------------------------------------- src/master/validation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/4b6d848e/src/master/validation.cpp ---------------------------------------------------------------------- diff --git a/src/master/validation.cpp b/src/master/validation.cpp index 01bc2e0..42f5742 100644 --- a/src/master/validation.cpp +++ b/src/master/validation.cpp @@ -894,7 +894,7 @@ Option<Error> validateCompatibleExecutorInfo( if (executorInfo.isSome() && executor != executorInfo.get()) { return Error( "ExecutorInfo is not compatible with existing ExecutorInfo" - " with same ExecutorID).\n" + " with same ExecutorID.\n" "------------------------------------------------------------\n" "Existing ExecutorInfo:\n" + stringify(executorInfo.get()) + "\n"