James Moger
2013-11-19 32539684194f55a76ec171852f582bdafa4c5631
src/main/java/com/gitblit/GitBlit.java
@@ -611,7 +611,7 @@
   public void setUserService(IUserService userService) {
      logger.info("Setting up user service " + userService.toString());
      this.userService = userService;
      this.userService.setup(settings);
      this.userService.setup(getManager(IRuntimeManager.class));
   }
   @Override
@@ -3641,7 +3641,9 @@
      String bindInterface = settings.getString(Keys.git.daemonBindInterface, "localhost");
      if (port > 0) {
         try {
            gitDaemon = new GitDaemon(this, this, this, this);
            // HACK temporary pending manager separation and injection
            Gitblit gitblit = new Gitblit(this, this, this, this, this, this, this, this);
            gitDaemon = new GitDaemon(gitblit);
            gitDaemon.start();
         } catch (IOException e) {
            gitDaemon = null;