Package com.google.gerrit.server.notedb
Class CommitRewriter.BackfillResult
- java.lang.Object
-
- com.google.gerrit.server.notedb.CommitRewriter.BackfillResult
-
- Enclosing class:
- CommitRewriter
public static class CommitRewriter.BackfillResult extends Object
Result of the backfill run for a project.
-
-
Field Summary
Fields Modifier and Type Field Description Map<String,List<CommitRewriter.CommitDiff>>
fixedRefDiff
Refs that were fixed by the run/ would be fixed if in --dry-run, together with their commit history diff.boolean
ok
If the run for the project was successful.List<String>
refsFailedToFix
Refs, failed to backfill by the run.List<String>
refsStillInvalidAfterFix
Refs that still contain user data after the backfill run.
-
Constructor Summary
Constructors Constructor Description BackfillResult()
-
-
-
Field Detail
-
ok
public boolean ok
If the run for the project was successful.
-
fixedRefDiff
public Map<String,List<CommitRewriter.CommitDiff>> fixedRefDiff
Refs that were fixed by the run/ would be fixed if in --dry-run, together with their commit history diff. Diff is empty if --output-diff is false.
-
refsStillInvalidAfterFix
public List<String> refsStillInvalidAfterFix
Refs that still contain user data after the backfill run. Only filled if --verify-commits, seeCommitRewriter.verifyCommit(java.lang.String, org.eclipse.jgit.lib.PersonIdent, java.util.Collection<com.google.gerrit.server.account.AccountState>)
-
-