add user-agent for all minio.Client usage (#16619)

This commit is contained in:
Harshavardhana
2023-02-14 13:19:30 -08:00
committed by GitHub
parent 857674c3a0
commit 0c1f8b4e0f
6 changed files with 31 additions and 18 deletions

View File

@@ -53,10 +53,9 @@ func newWarmBackendMinIO(conf madmin.TierMinIO) (*warmBackendMinIO, error) {
if err != nil {
return nil, err
}
core, err := minio.NewCore(u.Host, opts)
if err != nil {
return nil, err
}
client.SetAppInfo("minio-tier-target", ReleaseTag)
core := &minio.Core{Client: client}
return &warmBackendMinIO{
warmBackendS3{
client: client,