revert "db: round created, updated... timestamps to 1 second" (#3127)

this fixes functional tests with decision stream startup=true
This commit is contained in:
mmetc 2024-07-12 17:02:44 +02:00 committed by GitHub
parent 1b0104186a
commit 06720538f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -66,7 +66,7 @@ func ConfigureLogger(clog *log.Logger) error {
}
func UtcNow() time.Time {
return time.Now().UTC().Round(time.Second)
return time.Now().UTC()
}
func IsNetworkFS(path string) (bool, string, error) {