fix: include time zone name overrides and add KOITO_FORCE_TZ cfg option (#176)

* timezone overrides and force_tz option

* docs for force_tz

* add link to time zone names in docs
This commit is contained in:
Gabe Farrell 2026-01-24 13:19:04 -05:00 committed by GitHub
parent 1ed055d098
commit 937f9062b5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 153 additions and 1 deletions

View file

@ -96,6 +96,10 @@ func Run(
defer store.Close(ctx)
l.Info().Msg("Engine: Database connection established")
if cfg.ForceTZ() != nil {
l.Debug().Msgf("Engine: Forcing the use of timezone '%s'", cfg.ForceTZ().String())
}
l.Debug().Msg("Engine: Initializing MusicBrainz client")
var mbzC mbz.MusicBrainzCaller
if !cfg.MusicBrainzDisabled() {