feat: change social concurrency

This commit is contained in:
Nevo David 2026-01-11 13:49:59 +07:00
parent 46b1263304
commit 38cbeb8d95
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ export class InstagramProvider
'instagram_manage_comments',
'instagram_manage_insights',
];
override maxConcurrentJob = 10;
override maxConcurrentJob = 200;
editor = 'normal' as const;
dto = InstagramDto;
maxLength() {

View File

@ -50,7 +50,7 @@ const clientAndYoutube = () => {
@Rules('YouTube must have on video attachment, it cannot be empty')
export class YoutubeProvider extends SocialAbstract implements SocialProvider {
override maxConcurrentJob = 1; // YouTube has strict upload quotas
override maxConcurrentJob = 200; // YouTube has strict upload quotas
identifier = 'youtube';
name = 'YouTube';
isBetweenSteps = true;