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;
|
||||
|
||||
if (freshUser) {
|
||||
tags = Tags.of("type", "new");
|
||||
} else if (maybeRecentlyDeletedAccountIdentifier.isPresent()) {
|
||||
tags = Tags.of("type", "recently-deleted");
|
||||
tags = Tags.of("type", maybeRecentlyDeletedAccountIdentifier.isPresent() ? "recently-deleted" : "new");
|
||||
} else {
|
||||
tags = Tags.of("type", "re-registration");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue