Finish fixing account duplication on import

The rewrite needs to happen on the openid URL, not the user_link
(the latter is the account profile URL on LP).

Change-Id: I81725a45a9056c974c3e8fb8a180f9928f317146
This commit is contained in:
Jeremy Stanley 2018-03-24 00:50:08 +00:00
parent 86dc566448
commit 116f72a399

View File

@ -120,8 +120,6 @@ class LaunchpadWriter(object):
display_name = "Disabled Launchpad User"
user_link = "000000000000000000000"
user_link.replace('login.launchpad.net', 'login.ubuntu.com')
# Resolve the openid.
if user_link not in self._openid_map:
try:
@ -130,6 +128,8 @@ class LaunchpadWriter(object):
None)
openid_request = openid_consumer.begin(user_link)
openid = openid_request.endpoint.getLocalID()
openid = openid.replace(
'login.launchpad.net', 'login.ubuntu.com')
self._openid_map[user_link] = openid
except DiscoveryFailure: