diff options
Diffstat (limited to 'server/lib/live-manager.ts')
-rw-r--r-- | server/lib/live-manager.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/lib/live-manager.ts b/server/lib/live-manager.ts index 4a1081a4f..e85998686 100644 --- a/server/lib/live-manager.ts +++ b/server/lib/live-manager.ts | |||
@@ -4,6 +4,7 @@ import * as chokidar from 'chokidar' | |||
4 | import { FfmpegCommand } from 'fluent-ffmpeg' | 4 | import { FfmpegCommand } from 'fluent-ffmpeg' |
5 | import { ensureDir, stat } from 'fs-extra' | 5 | import { ensureDir, stat } from 'fs-extra' |
6 | import { basename } from 'path' | 6 | import { basename } from 'path' |
7 | import { isTestInstance } from '@server/helpers/core-utils' | ||
7 | import { | 8 | import { |
8 | computeResolutionsToTranscode, | 9 | computeResolutionsToTranscode, |
9 | getVideoFileFPS, | 10 | getVideoFileFPS, |
@@ -451,7 +452,7 @@ class LiveManager { | |||
451 | private async updateLiveViews () { | 452 | private async updateLiveViews () { |
452 | if (!this.isRunning()) return | 453 | if (!this.isRunning()) return |
453 | 454 | ||
454 | logger.info('Updating live video views.') | 455 | if (!isTestInstance()) logger.info('Updating live video views.') |
455 | 456 | ||
456 | for (const videoId of this.watchersPerVideo.keys()) { | 457 | for (const videoId of this.watchersPerVideo.keys()) { |
457 | const notBefore = new Date().getTime() - VIEW_LIFETIME.LIVE | 458 | const notBefore = new Date().getTime() - VIEW_LIFETIME.LIVE |