handle unittest failure
This commit is contained in:
parent
2abcb52a53
commit
62b42af183
|
|
@ -228,7 +228,11 @@ CORS_EXPOSE_HEADERS = ["X-Start-Timestamp"]
|
|||
# TA application settings
|
||||
TA_UPSTREAM = "https://github.com/tubearchivist/tubearchivist"
|
||||
TA_VERSION = "v0.5.8-unstable"
|
||||
TA_START = RedisArchivist().get_message_str("STARTTIMESTAMP")
|
||||
try:
|
||||
TA_START = RedisArchivist().get_message_str("STARTTIMESTAMP")
|
||||
except ValueError:
|
||||
# fails in unittests bootstrap
|
||||
pass
|
||||
|
||||
# API
|
||||
REST_FRAMEWORK = {
|
||||
|
|
|
|||
Loading…
Reference in New Issue