fix: various fixes to sentry-reported errors and more

This commit is contained in:
Hampus Kraft
2026-02-18 15:38:51 +00:00
parent 302c0d2a0c
commit 0517a966a3
357 changed files with 25420 additions and 16281 deletions

View File

@@ -140,4 +140,19 @@ export const ChannelRateLimitConfigs = {
bucket: 'channel:stream:preview:post::stream_key',
config: {limit: 20, windowMs: ms('10 seconds')},
} as RouteRateLimitConfig,
CHANNEL_CHUNKED_UPLOAD_CREATE: {
bucket: 'channel:chunked_upload:create::channel_id',
config: {limit: 5, windowMs: ms('10 seconds')},
} as RouteRateLimitConfig,
CHANNEL_CHUNKED_UPLOAD_CHUNK: {
bucket: 'channel:chunked_upload:chunk::channel_id',
config: {limit: 50, windowMs: ms('10 seconds')},
} as RouteRateLimitConfig,
CHANNEL_CHUNKED_UPLOAD_COMPLETE: {
bucket: 'channel:chunked_upload:complete::channel_id',
config: {limit: 5, windowMs: ms('10 seconds')},
} as RouteRateLimitConfig,
} as const;