Really REALLY fix instrumentation for re-registration of recently-deleted accounts
This commit is contained in:
parent
601e9eebbd
commit
0cdc32cf65
|
@ -250,9 +250,7 @@ public class AccountsManager {
|
||||||
final Tags tags;
|
final Tags tags;
|
||||||
|
|
||||||
if (freshUser) {
|
if (freshUser) {
|
||||||
tags = Tags.of("type", "new");
|
tags = Tags.of("type", maybeRecentlyDeletedAccountIdentifier.isPresent() ? "recently-deleted" : "new");
|
||||||
} else if (maybeRecentlyDeletedAccountIdentifier.isPresent()) {
|
|
||||||
tags = Tags.of("type", "recently-deleted");
|
|
||||||
} else {
|
} else {
|
||||||
tags = Tags.of("type", "re-registration");
|
tags = Tags.of("type", "re-registration");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue