Fix log pattern in merge_profiles
Change-Id: I82835c6541ad71bd6a7a7433902b2f705e0a529c
This commit is contained in:
@@ -170,12 +170,12 @@ class RecordProcessor(object):
|
|||||||
if u.get('launchpad_id'))
|
if u.get('launchpad_id'))
|
||||||
if len(lp_ids) > 1:
|
if len(lp_ids) > 1:
|
||||||
LOG.info('Ambiguous launchpad ids: %s on profiles: %s',
|
LOG.info('Ambiguous launchpad ids: %s on profiles: %s',
|
||||||
(lp_ids, user_profiles))
|
lp_ids, user_profiles)
|
||||||
g_ids = set(u.get('gerrit_id') for u in user_profiles
|
g_ids = set(u.get('gerrit_id') for u in user_profiles
|
||||||
if u.get('gerrit_id'))
|
if u.get('gerrit_id'))
|
||||||
if len(g_ids) > 1:
|
if len(g_ids) > 1:
|
||||||
LOG.info('Ambiguous gerrit ids: %s on profiles: %s',
|
LOG.info('Ambiguous gerrit ids: %s on profiles: %s',
|
||||||
(g_ids, user_profiles))
|
g_ids, user_profiles)
|
||||||
|
|
||||||
merged_user = {} # merged user profile
|
merged_user = {} # merged user profile
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user