commit | e9b00820e5047cbac7ac74874406b06411d8deee | [log] [tgz] |
---|---|---|
author | Edwin Kempin <ekempin@google.com> | Thu Feb 23 13:12:53 2023 +0100 |
committer | Edwin Kempin <ekempin@google.com> | Thu Feb 23 13:12:53 2023 +0100 |
tree | 5de415540afc456e99f73d74d2e6ce26978264c3 | |
parent | 197d756f841d6adc39fec2f0d2cf6b358c15d0e0 [diff] |
AccountResolver.ByEmail: Ignore inconsistent accounts if multiple accounts are matched An email can only belong to a single account. If multiple accounts are found for an email it means there is an inconsistency, i.e. some of the found accounts have a preferred email set that they do not own via an external ID. In this case we return only the one account that actually owns the email via an external ID. Returning all matched accounts instead of only the account that owns the email via an external ID was a behavior change that was accidentally introduced by change I799bf1c57. If none of the matched accounts owns the email, we return all matches to be consistent with the behavior of Emails.getAccountFor(String) that is used if the user can see secondary emails (Emails.getAccountFor(String) falls back to searching accounts by preferred email if there is no account owning the email via an external ID and all of them are returned). This fall-back is important for Google since internally we support a process to link accounts, which creates such inconsistent accounts (accounts having a preferred email that they do not own via an external ID). Release-Notes: skip Signed-off-by: Edwin Kempin <ekempin@google.com> Change-Id: Ic0002ef35899a3df8fbc2138f91619326fe38798
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.