[#296] container: Increase default expiration time

Signed-off-by: Alex Vanin <a.vanin@yadro.com>
remotes/acid-ant/master
Alexey Vanin 2022-11-21 15:52:18 +03:00 committed by Alex Vanin
parent 0ba830f48f
commit 1a4fa7e421
1 changed files with 4 additions and 4 deletions

View File

@ -74,10 +74,10 @@ const (
NotFoundError = "container does not exist"
// default SOA record field values
defaultRefresh = 3600 // 1 hour
defaultRetry = 600 // 10 min
defaultExpire = 604800 // 1 week
defaultTTL = 3600 // 1 hour
defaultRefresh = 3600 // 1 hour
defaultRetry = 600 // 10 min
defaultExpire = 3600 * 24 * 365 * 10 // 10 years
defaultTTL = 3600 // 1 hour
)
var (