Fix equation order for Cif Update duration
All checks were successful
Go Test / test (push) Successful in 43s

This commit is contained in:
Fred Boniface 2024-04-17 09:40:15 +01:00
parent e890456390
commit eefd9138de

View File

@ -117,7 +117,7 @@ func runCifUpdateDownload(cfg *helpers.Configuration, metadata *dbAccess.CifMeta
}
endTime := time.Now()
duration := startTime.Sub(endTime)
duration := endTime.Sub(startTime)
log.Info("CIF Update process ended", zap.Duration("duration", duration))
return nil
}