Skip to content
Snippets Groups Projects
Commit 30040f68 authored by Emanuele Aina's avatar Emanuele Aina
Browse files

utils: Prioritize .id over .name to identify elements in thread_pool()


There are more chances that an `id` property is actually unique than a
`name` property, so let's attempt to use it before `name` when
reporting the element `thread_pool()` is working on.

Signed-off-by: Emanuele Aina's avatarEmanuele Aina <emanuele.aina@collabora.com>
parent ad9ed0bf
No related branches found
No related tags found
1 merge request!69Optionally turn on debugging in CI and other debugging improvements
......@@ -8,10 +8,10 @@ def item_id(item):
itemid = None
if logging.root.level <= logging.DEBUG:
itemid = getattr(item, "path_with_namespace", None)
if itemid is None:
itemid = getattr(item, "name", None)
if itemid is None:
itemid = getattr(item, "id", None)
if itemid is None:
itemid = getattr(item, "name", None)
if itemid is None and isinstance(item, str):
itemid = item
if itemid is None and isinstance(item, collections.Sequence):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment