feat: set DefaultTusChunkSize to 20MB

This commit is contained in:
Tobias Goerke 2023-07-27 08:23:45 +02:00
parent cd7c518b14
commit 60f2f321c8

View File

@ -1,6 +1,6 @@
package settings package settings
const DefaultTusChunkSize = 5 * 1024 * 1024 // 20MB const DefaultTusChunkSize = 20 * 1024 * 1024 // 20MB
const DefaultTusRetryCount = 3 const DefaultTusRetryCount = 3
// Tus contains the tus.io settings of the app. // Tus contains the tus.io settings of the app.