1
0
mirror of https://github.com/raseels-repos/golang-saas-starter-kit.git synced 2025-06-17 00:17:59 +02:00

set db connection lifetime to one hour

This commit is contained in:
Lee Brown
2019-10-26 18:14:55 -08:00
parent 28cf4924ff
commit 9ed3c37c87
2 changed files with 6 additions and 0 deletions

View File

@ -393,6 +393,9 @@ func main() {
}
defer masterDb.Close()
// Enable AWS to auto pause the DB when no activity.
masterDb.SetConnMaxLifetime(time.Hour)
// =========================================================================
// Notify Email
var notifyEmail notify.Email