mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-01-18 22:43:41 +08:00
Merge pull request #1171 from stlpmo-jn/redundant_type_conversion
remove the redundant type conversion
This commit is contained in:
commit
1346437d71
@ -208,8 +208,8 @@ func (v *Volume) ToVolumeInformationMessage() *master_pb.VolumeInformationMessag
|
||||
Id: uint32(v.Id),
|
||||
Size: size,
|
||||
Collection: v.Collection,
|
||||
FileCount: uint64(v.FileCount()),
|
||||
DeleteCount: uint64(v.DeletedCount()),
|
||||
FileCount: v.FileCount(),
|
||||
DeleteCount: v.DeletedCount(),
|
||||
DeletedByteCount: v.DeletedSize(),
|
||||
ReadOnly: v.noWriteOrDelete,
|
||||
ReplicaPlacement: uint32(v.ReplicaPlacement.Byte()),
|
||||
|
Loading…
Reference in New Issue
Block a user