You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by ma...@apache.org on 2014/08/22 18:24:41 UTC

git commit: Fixing checkstyle build break introduced in https://issues.apache.org/jira/browse/AURORA-311

Repository: incubator-aurora
Updated Branches:
  refs/heads/master 2639b3a33 -> 900a2b299


Fixing checkstyle build break introduced in
https://issues.apache.org/jira/browse/AURORA-311

Bugs closed: AURORA-311

Reviewed at https://reviews.apache.org/r/24982/


Project: http://git-wip-us.apache.org/repos/asf/incubator-aurora/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-aurora/commit/900a2b29
Tree: http://git-wip-us.apache.org/repos/asf/incubator-aurora/tree/900a2b29
Diff: http://git-wip-us.apache.org/repos/asf/incubator-aurora/diff/900a2b29

Branch: refs/heads/master
Commit: 900a2b299347c71f7c7601a3a3d0a3f0f0afbcb7
Parents: 2639b3a
Author: Maxim Khutornenko <ma...@apache.org>
Authored: Fri Aug 22 09:24:16 2014 -0700
Committer: Maxim Khutornenko <ma...@apache.org>
Committed: Fri Aug 22 09:24:16 2014 -0700

----------------------------------------------------------------------
 .../java/org/apache/aurora/scheduler/DriverFactory.java     | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/900a2b29/src/main/java/org/apache/aurora/scheduler/DriverFactory.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/aurora/scheduler/DriverFactory.java b/src/main/java/org/apache/aurora/scheduler/DriverFactory.java
index f300ec9..9cc04a8 100644
--- a/src/main/java/org/apache/aurora/scheduler/DriverFactory.java
+++ b/src/main/java/org/apache/aurora/scheduler/DriverFactory.java
@@ -102,10 +102,11 @@ public interface DriverFactory extends Function<String, SchedulerDriver> {
 
     @CmdLine(name = "executor_user",
         help = "User to start the executor. Defaults to \"root\". "
-            + "Set this to an unprivileged user if the mesos master was started with \"--no-root_submissions\". "
-            + "If set to anything other than \"root\", the executor will ignore the \"role\" setting for jobs "
-            + "since it can't use setuid() anymore. This means that all your jobs will run under "
-            + "the specified user and the user has to exist on the mesos slaves.")
+            + "Set this to an unprivileged user if the mesos master was started with "
+            + "\"--no-root_submissions\". If set to anything other than \"root\", the executor "
+            + "will ignore the \"role\" setting for jobs since it can't use setuid() anymore. "
+            + "This means that all your jobs will run under the specified user and the user has "
+            + "to exist on the mesos slaves.")
     private static final Arg<String> EXECUTOR_USER = Arg.create("root");
 
     private static final String TWITTER_FRAMEWORK_NAME = "TwitterScheduler";