Skip to content

Commit

Permalink
I did a bad change... in a flowcb, it should be on_cleanup, but elsew…
Browse files Browse the repository at this point in the history
…here

it should be cleanup() now redis and disk implmentations are consistent
and called from flowcb on_cleanup
  • Loading branch information
petersilva committed Aug 1, 2023
1 parent 157fdde commit 8432616
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sarracenia/redisqueue.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def put(self, message_list):
logger.debug("rpush to list %s %s" % (self.key_name_new, message))
self.redis.rpush(self.key_name_new, self._msgToJSON(message))

def on_cleanup(self):
def cleanup(self):
"""
remove statefiles.
"""
Expand Down

0 comments on commit 8432616

Please sign in to comment.