Skip to content

Commit

Permalink
[yt/microservices/excel] Increase max excel sizes to 100mb.
Browse files Browse the repository at this point in the history
e87080438d5a279325900b288f7a31e3e1d9b517
  • Loading branch information
verytable committed Jul 16, 2024
1 parent 3f683c9 commit 8eeff4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion exporter/internal/app/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

const (
defaultHTTPHandlerTimeout = 2 * time.Minute
defaultMaxExcelFileSize = 1024 * 1024 * 50
defaultMaxExcelFileSize = 1024 * 1024 * 100

defaultAuthCookieName = "Session_id"
)
Expand Down
2 changes: 1 addition & 1 deletion uploader/internal/app/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

const (
defaultHTTPHandlerTimeout = 2 * time.Minute
defaultMaxExcelFileSize = 1024 * 1024 * 10
defaultMaxExcelFileSize = 1024 * 1024 * 100

defaultAuthCookieName = "Session_id"
)
Expand Down

0 comments on commit 8eeff4e

Please sign in to comment.