mirror of https://github.com/minio/minio.git
decompress audit log properly before sending to remote target (#20619)
This commit is contained in:
parent
4208d7af5a
commit
25e34fda5f
|
@ -242,6 +242,10 @@ func (store *QueueStore[I]) GetRaw(key Key) (raw []byte, err error) {
|
|||
return raw, os.ErrNotExist
|
||||
}
|
||||
|
||||
if key.Compress {
|
||||
raw, err = s2.Decode(nil, raw)
|
||||
}
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue