Two minor tweaks to change progress monitor

Call it "Processing changes" intead of "Updating changes". This fixes
the weird way of saying "Updating changes: updated 5" when pushing a
lot of new patch sets.

Don't output the magic refs as refs, these don't really matter to
the user and its almost always just one ref. They care more about
the new/updated changes.

Change-Id: Ic4c482cfa35ac60ff99452d1e5b77cd6c53fb05c
This commit is contained in:
Shawn O. Pearce
2012-04-16 19:19:01 -07:00
parent 01967efeba
commit e11f94d3e6
2 changed files with 3 additions and 3 deletions

View File

@@ -152,7 +152,7 @@ public class AsyncReceiveCommits implements PreReceiveHook {
rc.getReceivePack().setPreReceiveHook(this);
progress = new MultiProgressMonitor(
new MessageSenderOutputStream(), "Updating changes");
new MessageSenderOutputStream(), "Processing changes");
this.timeoutMillis = timeoutMillis;
}