Merge branch 'stable-2.15' into stable-2.16

* stable-2.15:
  Rebase: Don't swallow caught exception

Change-Id: I9d4cd56d6b4a7e2ec612e4e401b77b8e1bf73b99
This commit is contained in:
David Pursehouse
2019-08-22 19:02:17 +09:00
2 changed files with 5 additions and 1 deletions

View File

@@ -168,7 +168,7 @@ public class Rebase extends RetryingRestModifyView<RevisionResource, RebaseInput
}
} catch (NoSuchChangeException e) {
throw new UnprocessableEntityException(
String.format("Base change not found: %s", input.base));
String.format("Base change not found: %s", input.base), e);
}
PatchSet.Id baseId = base.patchSet().getId();