Skip to content
Snippets Groups Projects
Commit 4776e022 authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

mcpu: Log lock status with sorted names


Reading and comparing sorted lists is easier when debugging locking problems.

Signed-off-by: default avatarMichael Hanselmann <hansmi@google.com>
Reviewed-by: default avatarIustin Pop <iustin@google.com>
parent 9b154270
No related branches found
No related tags found
No related merge requests found
......@@ -275,7 +275,7 @@ class Processor(object):
elif isinstance(names, basestring):
parts.append(names)
else:
parts.append(",".join(names))
parts.append(",".join(sorted(names)))
if shared:
parts.append("shared")
......
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