Skip to content

Commit

Permalink
Merge pull request #1179 from MetPX/3.00.54_maint
Browse files Browse the repository at this point in the history
3.00.54 maint
  • Loading branch information
petersilva authored Aug 22, 2024
2 parents 77ccbfa + 2d28040 commit 39c4334
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
metpx-sr3 (3.00.54p1) unstable; urgency=medium

* fix for crash in fileAgeMin

-- SSC-5CD2310S60 <peter@bsqt.homeip.net> Wed, 21 Aug 2024 11:49:45 -0400

metpx-sr3 (3.00.54) unstable; urgency=medium

* fix #1142 token authentication re-factor
Expand Down
2 changes: 1 addition & 1 deletion sarracenia/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.00.54"
__version__ = "3.00.54p1"
2 changes: 1 addition & 1 deletion sarracenia/flow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -999,7 +999,7 @@ def filter(self) -> None:

if self.o.fileAgeMin > 0 and age < self.o.fileAgeMin:
logger.warning( f"file too young: queueing for retry.")
self.worklist.failed.append(msg)
self.worklist.failed.append(m)
continue

if 'fileOp' in m and 'rename' in m['fileOp']:
Expand Down

0 comments on commit 39c4334

Please sign in to comment.