Fix MB const size (#11088)

Signed-off-by: fishpenguin <kun.yu@zilliz.com>
This commit is contained in:
yukun 2021-11-02 18:06:28 +08:00 committed by GitHub
parent ea6cd7d27c
commit 82e5d21317
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,7 +33,7 @@ var RocksmqRetentionSizeInMB int64
// Const value that used to convert unit
const (
MB = 2 << 20
MB = 1024 * 1024
MINUTE = 60
)