Fixed
Status Update
Comments
da...@gmail.com <da...@gmail.com> #2
[Empty comment from Monorail migration]
da...@gmail.com <da...@gmail.com> #3
[Empty comment from Monorail migration]
bu...@chops-service-accounts.iam.gserviceaccount.com <bu...@chops-service-accounts.iam.gserviceaccount.com> #4
Gerrit was using following regexp in gerrit.config:
[commentlink "ph"]
match = "([Bb]ug|[Ii]ssue)\\s*#?(\\d+)"
link =https://bugs.chromium.org/p/gerrit/issues/detail?id=$2
\\s matches \n and \r so \\s* will match a lot of new lines
[ \\t]*\\r\\n?[ \\t]* matches just one new line
[commentlink "ph"]
match = "([Bb]ug|[Ii]ssue)\\s*#?(\\d+)"
link =
\\s matches \n and \r so \\s* will match a lot of new lines
[ \\t]*\\r\\n?[ \\t]* matches just one new line
da...@gmail.com <da...@gmail.com> #5
[Empty comment from Monorail migration]
da...@gmail.com <da...@gmail.com> #6
[Empty comment from Monorail migration]
ek...@google.com <ek...@google.com> #7
Edits were made to reflect the following in Monorail: auto-CCs.
ek...@google.com <ek...@google.com> #8
[Monorail components: -Lucene]
Description
and range types were replaced with IntPoint and LongPoint and range
types with different backend representation. See these issues for more
details:[1],[2],[3] and this in depth overview:[4].
The deprecated types were renamed in Lucene 6.x in LegacyIntField and
LegacyLongField, and removed in Lucene 7.x so that we cannot upgrade
anymore and must migrate to the new dimensional numeric types.
[1]
[2]
[3]
[4]