update dependencies to allow building

This commit is contained in:
Harshavardhana
2021-12-08 20:43:18 -08:00
parent 1713e58e62
commit 02c4910044
3 changed files with 24 additions and 20 deletions

View File

@@ -236,7 +236,8 @@ func (ac AdminClient) setConfigKV(ctx context.Context, kv string) (restart bool,
// implements madmin.DelConfigKV()
func (ac AdminClient) delConfigKV(ctx context.Context, kv string) (err error) {
return ac.Client.DelConfigKV(ctx, kv)
_, err = ac.Client.DelConfigKV(ctx, kv)
return err
}
// implements madmin.ServiceRestart()