diff --git a/Authors b/Authors index 8c167f7f9911..e7b82281d45c 100644 --- a/Authors +++ b/Authors @@ -75,6 +75,7 @@ Hengqing Hu Hisaharu Ishii Hisaki Ohara Ilya Alekseyev +Ionuț Arțăriși Isaku Yamahata Ivan Kolodyazhny J. Daniel Schmidt diff --git a/nova/utils.py b/nova/utils.py index 1006714cc440..e959e544aba0 100644 --- a/nova/utils.py +++ b/nova/utils.py @@ -857,7 +857,7 @@ class GreenLockFile(lockfile.FileLock): t = threading.current_thread() # Thread objects in Python 2.4 and earlier do not have ident # attrs. Worm around that. - ident = getattr(t, "ident", hash(t)) + ident = getattr(t, "ident", hash(t)) or hash(t) gident = corolocal.get_ident() self.tname = "-%x-%x" % (ident & 0xffffffff, gident & 0xffffffff) else:

AltStyle によって変換されたページ (->オリジナル) /