diff --git a/.prettierignore b/.prettierignore deleted file mode 100644 index a6c57f5fb..000000000 --- a/.prettierignore +++ /dev/null @@ -1 +0,0 @@ -*.json diff --git a/.prettierrc.yml b/.prettierrc.yml deleted file mode 100644 index d8379671f..000000000 --- a/.prettierrc.yml +++ /dev/null @@ -1,8 +0,0 @@ -printWidth: 140 -tabWidth: 2 -useTabs: false -semi: false -singleQuote: true -trailingComma: false -bracketSpacing: true -arrowParens: always diff --git a/server/lib/activitypub/process/process-create.ts b/server/lib/activitypub/process/process-create.ts index 5197dac73..cff8dcfc6 100644 --- a/server/lib/activitypub/process/process-create.ts +++ b/server/lib/activitypub/process/process-create.ts @@ -90,9 +90,6 @@ async function processCreateView (byActor: ActorModel, activity: ActivityCreate) } 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()) { diff --git a/server/lib/schedulers/videos-redundancy-scheduler.ts b/server/lib/schedulers/videos-redundancy-scheduler.ts index 960651712..998d2295a 100644 --- a/server/lib/schedulers/videos-redundancy-scheduler.ts +++ b/server/lib/schedulers/videos-redundancy-scheduler.ts @@ -30,6 +30,8 @@ export class VideosRedundancyScheduler extends AbstractScheduler { 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