We already checked it in the signature checker
+++ /dev/null
-printWidth: 140
-tabWidth: 2
-useTabs: false
-semi: false
-singleQuote: true
-trailingComma: false
-bracketSpacing: true
-arrowParens: always
}
const { video } = await getOrCreateVideoAndAccountAndChannel(options)
- const actorExists = await ActorModel.isActorUrlExist(view.actor)
- if (actorExists === false) throw new Error('Unknown actor ' + view.actor)
-
await Redis.Instance.addVideoView(video.id)
if (video.isOwned()) {
this.executing = true
for (const obj of CONFIG.REDUNDANCY.VIDEOS.STRATEGIES) {
+ if (!isTestInstance()) logger.info('Running redundancy scheduler for strategy %s.', obj.strategy)
+
try {
const videoToDuplicate = await this.findVideoToDuplicate(obj)
if (!videoToDuplicate) continue