Skip to content

Commit

Permalink
Change reject queue to a QueueSimple() when using dirq for sender
Browse files Browse the repository at this point in the history
Signed-off-by: jounaidr <[email protected]>
  • Loading branch information
jounaidr authored and tofu-rocketry committed Aug 2, 2022
1 parent 8b3b0a5 commit 960f23c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ssm/ssm2.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def __init__(self, hosts_and_ports, qpath, cert, key, dest=None, listen=None,
"module wasn't found.")

self._outq = QueueSimple(outqpath)
self._rejectq = MessageDirectory(rejectqpath)
self._rejectq = QueueSimple(rejectqpath)

elif path_type == 'directory':
self._outq = MessageDirectory(outqpath)
Expand Down

0 comments on commit 960f23c

Please sign in to comment.