James Moger
2014-05-29 65a6f622001a2596befb4dd0a07ce11cb9224d2e
src/main/java/com/gitblit/transport/ssh/commands/RootDispatcher.java
@@ -26,6 +26,7 @@
import com.gitblit.transport.ssh.SshDaemonClient;
import com.gitblit.transport.ssh.git.GitDispatcher;
import com.gitblit.transport.ssh.keys.KeysDispatcher;
import com.gitblit.utils.WorkQueue;
/**
 * The root dispatcher is the dispatch command that handles registering all
@@ -37,9 +38,10 @@
   private Logger log = LoggerFactory.getLogger(getClass());
   public RootDispatcher(IGitblit gitblit, SshDaemonClient client, String cmdLine) {
   public RootDispatcher(IGitblit gitblit, SshDaemonClient client, String cmdLine, WorkQueue workQueue) {
      super();
      setContext(new SshCommandContext(gitblit, client, cmdLine));
      setWorkQueue(workQueue);
      register(VersionCommand.class);
      register(GitDispatcher.class);