mirror of
https://github.com/minio/minio.git
synced 2025-04-16 08:58:11 -04:00
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
|
return raw, os.ErrNotExist
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if key.Compress {
|
||||||
|
raw, err = s2.Decode(nil, raw)
|
||||||
|
}
|
||||||
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user