round TA_START for multithread startup

This commit is contained in:
Simon 2025-11-01 10:56:55 +07:00
parent e1393fc67c
commit b6872d063f
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ CORS_EXPOSE_HEADERS = ["X-Start-Timestamp"]
# TA application settings
TA_UPSTREAM = "https://github.com/tubearchivist/tubearchivist"
TA_VERSION = "v0.5.8-unstable"
TA_START = str(int(datetime.now().timestamp()))
TA_START = str(int(datetime.now().timestamp() // 10 * 10)) # round it
# API
REST_FRAMEWORK = {