mirror of
https://github.com/minio/minio.git
synced 2024-12-25 14:45:54 -05:00
ac07df2985
start watcher after all creds have been loaded to avoid any conflicting locks that might get deadlocked. Deprecate unused peer calls for LoadUsers()
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 50m "$d"
|
|
done
|