commit | 418c240713016adf039440f6ab5f7f45fea0163d | [log] [tgz] |
---|---|---|
author | Edwin Kempin <ekempin@google.com> | Mon Jan 22 08:38:45 2018 +0100 |
committer | Edwin Kempin <ekempin@google.com> | Mon Jan 22 08:48:05 2018 +0100 |
tree | ce250b208a2fa3f0bfffc808ad37a699f28c472d | |
parent | fc6ec5a31604f17a59508877ac7b8b65c854583a [diff] |
Fix running git-upload-archive command for Gerrit slaves Running the git-upload-archive command against Gerrit slaves fails with a NullPointerException because it tries to access the change index which is not available on Gerrit slaves. Querying for visible changes to check if a commit is readable is an optimization that was added by commit 50c8b63f67 [2] (the corresponding change seems to be missing in the change index and hence I can't find it). Since querying for visible changes is an optimization only we can simply skip it on slaves where a change index is not available and fall back to checking the visibility of refs from which the commit is reachable. [1] [2018-01-22 13:16:45,059] [SSH git-upload-archive '/platform/packages/apps/Browser2' (xxx)] ERROR com.google.gerrit.sshd.BaseCommand : Internal server error (userxxx account 1000002) during git-upload-archive '/platform/packages/apps/Browser2' java.lang.NullPointerException at com.google.gerrit.server.index.change.ChangeIndexRewriter.isIndexPredicate(ChangeIndexRewriter.java:245) at com.google.gerrit.server.index.change.ChangeIndexRewriter.rewriteImpl(ChangeIndexRewriter.java:183) at com.google.gerrit.server.index.change.ChangeIndexRewriter.rewriteImpl(ChangeIndexRewriter.java:208) at com.google.gerrit.server.index.change.ChangeIndexRewriter.rewriteImpl(ChangeIndexRewriter.java:156) at com.google.gerrit.server.index.change.ChangeIndexRewriter.rewrite(ChangeIndexRewriter.java:140) at com.google.gerrit.index.query.QueryProcessor.query(QueryProcessor.java:224) at com.google.gerrit.index.query.QueryProcessor.query(QueryProcessor.java:174) at com.google.gerrit.index.query.QueryProcessor.query(QueryProcessor.java:157) at com.google.gerrit.index.query.InternalQuery.query(InternalQuery.java:74) at com.google.gerrit.server.query.change.InternalChangeQuery.byProjectCommit(InternalChangeQuery.java:250) at com.google.gerrit.server.query.change.InternalChangeQuery.byProjectCommit(InternalChangeQuery.java:245) at com.google.gerrit.server.project.CommitsCollection.canRead(CommitsCollection.java:109) at com.google.gerrit.sshd.commands.UploadArchive.canRead(UploadArchive.java:253) at com.google.gerrit.sshd.commands.UploadArchive.runImpl(UploadArchive.java:188) at com.google.gerrit.sshd.AbstractGitCommand.service(AbstractGitCommand.java:102) at com.google.gerrit.sshd.AbstractGitCommand.access$000(AbstractGitCommand.java:32) at com.google.gerrit.sshd.AbstractGitCommand$1.run(AbstractGitCommand.java:67) at com.google.gerrit.sshd.BaseCommand$TaskThunk.run(BaseCommand.java:427) ... [2] https://gerrit.googlesource.com/gerrit/+/50c8b63f6721d8aba6074b238664f3eee7a2dc64%5E%21/gerrit-server/src/main/java/com/google/gerrit/server/project/ProjectControl.java Change-Id: Ic27ee3ccc5c9887a6a460c89fa29cb128b4c7af4 Signed-off-by: Edwin Kempin <ekempin@google.com>
Gerrit is a code review and project management tool for Git based projects.
Gerrit makes reviews easier by showing changes in a side-by-side display, and allowing inline comments to be added by any reviewer.
Gerrit simplifies Git based project maintainership by permitting any authorized user to submit changes to the master Git repository, rather than requiring all approved changes to be merged in by hand by the project maintainer.
For information about how to install and use Gerrit, refer to the documentation.
Our canonical Git repository is located on googlesource.com. There is a mirror of the repository on Github.
Please report bugs on the issue tracker.
Gerrit is the work of hundreds of contributors. We appreciate your help!
Please read the contribution guidelines.
Note that we do not accept Pull Requests via the Github mirror.
The IRC channel on freenode is #gerrit. An archive is available at: echelog.com.
The Developer Mailing list is repo-discuss on Google Groups.
Gerrit is provided under the Apache License 2.0.
Install Bazel and run the following:
git clone --recursive https://gerrit.googlesource.com/gerrit cd gerrit && bazel build release
The instruction how to configure GerritForge/BinTray repositories is here
On Debian/Ubuntu run:
apt-get update & apt-get install gerrit=<version>-<release>
NOTE: release is a counter that starts with 1 and indicates the number of packages that have been released with the same version of the software.
On CentOS/RedHat run:
yum clean all && yum install gerrit-<version>[-<release>]
On Fedora run:
dnf clean all && dnf install gerrit-<version>[-<release>]
Docker images of Gerrit are available on DockerHub
To run a CentOS 7 based Gerrit image:
docker run -p 8080:8080 gerritforge/gerrit-centos7[:version]
To run a Ubuntu 15.04 based Gerrit image:
docker run -p 8080:8080 gerritforge/gerrit-ubuntu15.04[:version]
NOTE: release is optional. Last released package of the version is installed if the release number is omitted.