diff options
author | Alan Pearce | 2024-12-04 17:28:48 +0100 |
---|---|---|
committer | Alan Pearce | 2024-12-04 17:28:48 +0100 |
commit | c92530b7940bfd9e0940dd07e4a33b8dc4b575ea (patch) | |
tree | 465c3d05b2034e1a0c1daefcad2c645c79bfd90a /internal/config/structs.go | |
parent | ec4946ee959b2d7d28287e9cd4643a0698833f6b (diff) | |
download | searchix-c92530b7940bfd9e0940dd07e4a33b8dc4b575ea.tar.lz searchix-c92530b7940bfd9e0940dd07e4a33b8dc4b575ea.tar.zst searchix-c92530b7940bfd9e0940dd07e4a33b8dc4b575ea.zip |
fix: use UTC time for fetch/import timer
Diffstat (limited to 'internal/config/structs.go')
-rw-r--r-- | internal/config/structs.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/config/structs.go b/internal/config/structs.go index dd79303..b31e0cd 100644 --- a/internal/config/structs.go +++ b/internal/config/structs.go @@ -31,7 +31,7 @@ type Importer struct { Sources map[string]*Source LowMemory bool `comment:"Use less memory at the expense of import performance"` Timeout Duration `comment:"Abort fetch and import process for all jobs if it takes longer than this value."` - UpdateAt LocalTime `comment:"Local time of day to run fetch/import process"` + UpdateAt LocalTime `comment:"Time of day (UTC) to run fetch/import process"` } type Source struct { |