We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d2251f commit 0ee5b7dCopy full SHA for 0ee5b7d
core/subSystem.go
@@ -84,7 +84,7 @@ func findExportedBinaries(internalName string) map[string]map[string]string {
84
defer file.Close()
85
86
scanner := bufio.NewScanner(file)
87
- const maxTokenSize = 1024 * 1024
+ const maxTokenSize = 1024 * 2048
88
buf := make([]byte, maxTokenSize)
89
scanner.Buffer(buf, maxTokenSize)
90
for scanner.Scan() {
0 commit comments