commit | de913390a5eb7885066dc08356dc69eb86448eba | [log] [tgz] |
---|---|---|
author | Diego Zambelli Sessona <diego.sessona@gmail.com> | Sat Nov 25 01:21:46 2023 +0100 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Sat Nov 25 00:21:46 2023 +0000 |
tree | 544c1ab4542ce08ccf6a8d39e896106d2b282a43 | |
parent | 331713a306c9d6e332ab121551dad5c1b059c3c7 [diff] |
Update git submodules * Update plugins/replication from branch 'master' to c7c36d62cf61d1588e9cdeab3e89b77a65f44c79 - Remove events from beforeStartupEventsQueue in-memory queue Before replication plugin is fully loaded it can receive events. These events are stored in an in-memory queue called `beforeStartupEventsQueue`. After plugin is fully loaded those events are processed but never removed from the queue. This can cause issue processing the same event multiple times. Replication done with apply-object may not be idempotent if the event generated at a point in time is processed later. To avoid that remove event from the queue and then process it. Bug: Issue 307554728 Change-Id: Ic075c9dfa0a2e984762fed0aaf7481f035fdd662
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 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 --recurse-submodules 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 8 based Gerrit image:
docker run -p 8080:8080 gerritcodereview/gerrit[:version]-centos8
To run a Ubuntu 20.04 based Gerrit image:
docker run -p 8080:8080 gerritcodereview/gerrit[:version]-ubuntu20
NOTE: release is optional. Last released package of the version is installed if the release number is omitted.