Skip to content

Commit

Permalink
use queue
Browse files Browse the repository at this point in the history
  • Loading branch information
niccokunzmann committed Jun 30, 2022
1 parent fe2266a commit d0d50df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/dhcp.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class DelayWorker(object):

def __init__(self):
self.closed = False
self.queue = queue.PriorityQueue()
self.queue = queue.Queue()
self.thread = threading.Thread(target = self._delay_response_thread)
self.thread.start()

Expand Down

0 comments on commit d0d50df

Please sign in to comment.