Support user-specified expiration times #72
1 changed files with 1 additions and 1 deletions
2
fhost.py
2
fhost.py
|
@ -461,7 +461,7 @@ def prune():
|
||||||
File.expiration.is_not(None),
|
File.expiration.is_not(None),
|
||||||
File.expiration < current_time
|
File.expiration < current_time
|
||||||
)
|
)
|
||||||
).all()
|
)
|
||||||
|
|
||||||
files_removed = 0;
|
files_removed = 0;
|
||||||
Ember marked this conversation as resolved
|
|||||||
|
|
||||||
|
|
Loading…
Reference in a new issue
.all()
can be omitted here—unless you want to add a fancy progress bar withtqdm
?Noted! Will do! I think I'll leave out the fancy progress bar because I expect that this script (or at least the part of it that does more than add a new column to an empty database) will run a scarce few times, and there's really only a few existing servers where I expect it to take more than a couple seconds.
Oh wait I got mixed up, and thought this comment was on the migration script. Still, I doubt it'll take very long to run, even on larger servers.
11cfd07