Skip to content

Commit 6f5cc1c

Browse files
authored
Merge pull request #207 from m-lab/max-size
Fix bad number 20 -> 200
2 parents aa40fe9 + 4cf369c commit 6f5cc1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

task/task.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
// Impose 200MiB max size for a single file. Larger than this risks an OOM if there are
2121
// multiple large files at on multiple tasks.
2222
// This can be overridden with SetMaxFileSize()
23-
const MAX_FILE_SIZE = 20 * 1024 * 1024
23+
const MAX_FILE_SIZE = 200 * 1024 * 1024
2424

2525
// TODO(dev) Add unit tests for meta data.
2626
type Task struct {

0 commit comments

Comments
 (0)