From 90b71b7c005f9ed6ed4753e7d42b2d6e4a6c5cdc Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Fri, 20 Nov 2020 14:11:19 -0800 Subject: [PATCH] Fix typo. ms -> s --- core/storageproviders/s3Storage.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/storageproviders/s3Storage.go b/core/storageproviders/s3Storage.go index 8d7757b88..779185902 100644 --- a/core/storageproviders/s3Storage.go +++ b/core/storageproviders/s3Storage.go @@ -82,7 +82,7 @@ func (s *S3Storage) SegmentWritten(localFilePath string) { // Warn the user about long-running save operations if averagePerformance != 0 { if averagePerformance > float64(config.Config.GetVideoSegmentSecondsLength())*0.9 { - log.Warnln("Possible slow uploads: average upload S3 save duration", averagePerformance, "ms. troubleshoot this issue by visiting https://owncast.online/docs/troubleshooting/") + log.Warnln("Possible slow uploads: average upload S3 save duration", averagePerformance, "s. troubleshoot this issue by visiting https://owncast.online/docs/troubleshooting/") } }