When using the user_list in the minioadmin module.
I noticed that the returned data is truncated when the length of the data exceeds 16401.
It seems that the issue may be related to the condition in the__read_chunk method of the DecryptReader class in crypto.py. The condition while len(self._chunk) != (1 + _MAX_CHUNK_SIZE) is only executed once, and I'm not sure if this is a bug.
When using the
user_list
in theminioadmin
module.I noticed that the returned data is truncated when the length of the data exceeds 16401.
It seems that the issue may be related to the condition in the
__read_chunk
method of theDecryptReader
class incrypto.py
. The conditionwhile len(self._chunk) != (1 + _MAX_CHUNK_SIZE)
is only executed once, and I'm not sure if this is a bug.