Skip to content

Commit

Permalink
chore: Decrease default value of max video size
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Szuchet committed Jul 20, 2023
1 parent 92a5d81 commit 88b31c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Item/Item.router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ import {
} from './Item.errors'

export const MAX_VIDEO_SIZE =
parseInt(env.get('AWS_MAX_VIDEO_SIZE', ''), 10) || 5e7 // 50MB
parseInt(env.get('AWS_MAX_VIDEO_SIZE', ''), 10) || 4e6 // 4MB

export class ItemRouter extends Router {
// To be removed once we move everything to the item service
Expand Down

0 comments on commit 88b31c7

Please sign in to comment.