mirror of
https://github.com/minio/minio.git
synced 2024-12-25 14:45:54 -05:00
5aa5dcdc6d
Use reference format to initialize lockers during startup, also handle `nil` for NetLocker in dsync and remove *errorLocker* implementation Add further tuning parameters such as - DialTimeout is now 15 seconds from 30 seconds - KeepAliveTimeout is not 20 seconds, 5 seconds more than default 15 seconds - ResponseHeaderTimeout to 10 seconds - ExpectContinueTimeout is reduced to 3 seconds - DualStack is enabled by default remove setting it to `true` - Reduce IdleConnTimeout to 30 seconds from 1 minute to avoid idleConn build up Fixes #8773
8 lines
136 B
Bash
Executable File
8 lines
136 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
for d in $(go list ./... | grep -v browser); do
|
|
CGO_ENABLED=1 go test -v -race --timeout 20m "$d"
|
|
done
|