File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -161,13 +161,13 @@ func main() {
161
161
162
162
inputDownloadConcurrency := configuration .InputDownloadConcurrency
163
163
if inputDownloadConcurrency <= 0 {
164
- return status .Errorf (codes .InvalidArgument , "Nonpositive input download concurrency: " , inputDownloadConcurrency )
164
+ return status .Errorf (codes .InvalidArgument , "Nonpositive input download concurrency: %d " , inputDownloadConcurrency )
165
165
}
166
166
inputDownloadConcurrencySemaphore := semaphore .NewWeighted (inputDownloadConcurrency )
167
167
168
168
outputUploadConcurrency := configuration .OutputUploadConcurrency
169
169
if outputUploadConcurrency <= 0 {
170
- return status .Errorf (codes .InvalidArgument , "Nonpositive output upload concurrency: " , outputUploadConcurrency )
170
+ return status .Errorf (codes .InvalidArgument , "Nonpositive output upload concurrency: %d " , outputUploadConcurrency )
171
171
}
172
172
outputUploadConcurrencySemaphore := semaphore .NewWeighted (outputUploadConcurrency )
173
173
You can’t perform that action at this time.
0 commit comments