James Moger
2014-05-29 5bb55fb7e026378745a5f2c40cbfabd594010bd7
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);