Make MessageSender public and pass to AsyncReceiveCommits.Factory

Change-Id: I501b357943ad284f0a285170ae8ea643d716631b
This commit is contained in:
Dave Borowitz
2017-08-07 09:35:19 -04:00
parent 095467aa8f
commit 8c9115ce3f
6 changed files with 41 additions and 16 deletions

View File

@@ -295,7 +295,7 @@ public class GitOverHttpServlet extends GitServlet {
throw new ServiceNotAuthorizedException();
}
AsyncReceiveCommits arc = factory.create(pc, db, ImmutableSetMultimap.of());
AsyncReceiveCommits arc = factory.create(pc, db, null, ImmutableSetMultimap.of());
ReceivePack rp = arc.getReceivePack();
req.setAttribute(ATT_ARC, arc);
return rp;