Skip to content

Commit d4ab7d3

Browse files
switch to snakecase for threading related functions (#213)
1 parent c8e1162 commit d4ab7d3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

beaker/synchronization.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -328,10 +328,10 @@ def do_release_read_lock(self):
328328
# check if we are the last asynchronous reader thread
329329
# out the door.
330330
if self.asynch == 0:
331-
# yes. so if a sync operation is waiting, notifyAll to wake
331+
# yes. so if a sync operation is waiting, notify_all to wake
332332
# it up
333333
if self.current_sync_operation is not None:
334-
self.condition.notifyAll()
334+
self.condition.notify_all()
335335
elif self.asynch < 0:
336336
raise LockError("Synchronizer error - too many "
337337
"release_read_locks called")
@@ -357,7 +357,7 @@ def do_acquire_write_lock(self, wait=True):
357357
# establish ourselves as the current sync
358358
# this indicates to other read/write operations
359359
# that they should wait until this is None again
360-
self.current_sync_operation = _threading.currentThread()
360+
self.current_sync_operation = _threading.current_thread()
361361

362362
# now wait again for asyncs to finish
363363
if self.asynch > 0:
@@ -377,7 +377,7 @@ def do_acquire_write_lock(self, wait=True):
377377
def do_release_write_lock(self):
378378
self.condition.acquire()
379379
try:
380-
if self.current_sync_operation is not _threading.currentThread():
380+
if self.current_sync_operation is not _threading.current_thread():
381381
raise LockError("Synchronizer error - current thread doesnt "
382382
"have the write lock")
383383

@@ -386,7 +386,7 @@ def do_release_write_lock(self):
386386
self.current_sync_operation = None
387387

388388
# tell everyone to get ready
389-
self.condition.notifyAll()
389+
self.condition.notify_all()
390390
finally:
391391
# everyone go !!
392392
self.condition.release()

0 commit comments

Comments
 (0)