mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-23 21:55:03 +02:00
Fix bug in the mutex gdb printer.
This commit is contained in:
parent
c552d79774
commit
c81a88057c
@ -43,7 +43,7 @@ class IcingaMutexPrinter:
|
|||||||
if owner == 0:
|
if owner == 0:
|
||||||
return '<unlocked>'
|
return '<unlocked>'
|
||||||
else:
|
else:
|
||||||
return '<locked by #' + owner + '>'
|
return '<locked by #' + str(owner) + '>'
|
||||||
|
|
||||||
def lookup_icinga_type(val):
|
def lookup_icinga_type(val):
|
||||||
t = val.type.unqualified()
|
t = val.type.unqualified()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user