You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@batchee.apache.org by rm...@apache.org on 2015/11/30 21:45:07 UTC

incubator-batchee git commit: adding Eviction command to default commands

Repository: incubator-batchee
Updated Branches:
  refs/heads/master 02c322402 -> 5a358ee3c


adding Eviction command to default commands


Project: http://git-wip-us.apache.org/repos/asf/incubator-batchee/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-batchee/commit/5a358ee3
Tree: http://git-wip-us.apache.org/repos/asf/incubator-batchee/tree/5a358ee3
Diff: http://git-wip-us.apache.org/repos/asf/incubator-batchee/diff/5a358ee3

Branch: refs/heads/master
Commit: 5a358ee3c9ee8aaf244897a71da5b83d9b922f08
Parents: 02c3224
Author: Romain Manni-Bucau <rm...@gmail.com>
Authored: Mon Nov 30 21:45:42 2015 +0100
Committer: Romain Manni-Bucau <rm...@gmail.com>
Committed: Mon Nov 30 21:45:42 2015 +0100

----------------------------------------------------------------------
 tools/cli/src/main/java/org/apache/batchee/cli/BatchEECLI.java | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/5a358ee3/tools/cli/src/main/java/org/apache/batchee/cli/BatchEECLI.java
----------------------------------------------------------------------
diff --git a/tools/cli/src/main/java/org/apache/batchee/cli/BatchEECLI.java b/tools/cli/src/main/java/org/apache/batchee/cli/BatchEECLI.java
index f915760..a10775e 100644
--- a/tools/cli/src/main/java/org/apache/batchee/cli/BatchEECLI.java
+++ b/tools/cli/src/main/java/org/apache/batchee/cli/BatchEECLI.java
@@ -21,6 +21,7 @@ import io.airlift.airline.Help;
 import io.airlift.airline.ParseException;
 import org.apache.batchee.cli.command.Abandon;
 import org.apache.batchee.cli.command.CliConfiguration;
+import org.apache.batchee.cli.command.Eviction;
 import org.apache.batchee.cli.command.Executions;
 import org.apache.batchee.cli.command.Exit;
 import org.apache.batchee.cli.command.Instances;
@@ -113,7 +114,8 @@ public class BatchEECLI {
                 Start.class, Restart.class,
                 Status.class, Running.class,
                 Stop.class, Abandon.class,
-                Instances.class, Executions.class);
+                Instances.class, Executions.class,
+                Eviction.class);
         }
         final Iterator<Class<? extends UserCommand>> userCommands = cliConfiguration.userCommands();
         if (userCommands != null) {