🐛(backend) fix TRASHBIN_CUTOFF_DAYS type error
Fixes `TRASHBIN_CUTOFF_DAYS` type as described in #1777. Signed-off-by: ChristopherSpelt <christopherspelt@icloud.com>
This commit is contained in:
committed by
GitHub
parent
b56ebf19af
commit
39b9c8b5a9
@@ -16,6 +16,7 @@ and this project adheres to
|
|||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- ✅(backend) reduce flakiness on backend test #1769
|
- ✅(backend) reduce flakiness on backend test #1769
|
||||||
|
- 🐛(backend) fix TRASHBIN_CUTOFF_DAYS type error #1778
|
||||||
|
|
||||||
### Security
|
### Security
|
||||||
|
|
||||||
|
|||||||
@@ -453,7 +453,7 @@ class Base(Configuration):
|
|||||||
"REDOC_DIST": "SIDECAR",
|
"REDOC_DIST": "SIDECAR",
|
||||||
}
|
}
|
||||||
|
|
||||||
TRASHBIN_CUTOFF_DAYS = values.Value(
|
TRASHBIN_CUTOFF_DAYS = values.IntegerValue(
|
||||||
30, environ_name="TRASHBIN_CUTOFF_DAYS", environ_prefix=None
|
30, environ_name="TRASHBIN_CUTOFF_DAYS", environ_prefix=None
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user