Upped capture count warning to 10000
This commit is contained in:
parent
061618d9e6
commit
0647acd47d
1 changed files with 2 additions and 2 deletions
|
|
@ -34,9 +34,9 @@ def main():
|
||||||
|
|
||||||
# Check number of captures being restored
|
# Check number of captures being restored
|
||||||
files = make_file_list(cap_path, EXIF_FORMATS)
|
files = make_file_list(cap_path, EXIF_FORMATS)
|
||||||
if len(files) >= 2000:
|
if len(files) >= 10000:
|
||||||
error_sources.append(WarningSource(
|
error_sources.append(WarningSource(
|
||||||
("Over 2000 captures are being restored. This may slow down server startup.",
|
("Over 10000 captures are being restored. This may slow down server startup.",
|
||||||
f"Consider moving your captures from {cap_path} to another location.")
|
f"Consider moving your captures from {cap_path} to another location.")
|
||||||
))
|
))
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue