mirror of
https://github.com/cubefs/cubefs.git
synced 2026-08-02 02:00:56 +00:00
fix(metanode): hybrid cloud Correct the type conversion error for logCurrentExtentKeys function
Signed-off-by: chihe <chihe@oppo.com>
This commit is contained in:
parent
5b867906d2
commit
75658db207
@ -1083,10 +1083,10 @@ func logCurrentExtentKeys(storageClass uint32, sortedEks interface{}, inode uint
|
||||
} else {
|
||||
if proto.IsStorageClassReplica(storageClass) {
|
||||
log.LogInfof("action[fsmUpdateExtentKeyAfterMigration] inode %v current ek %v",
|
||||
inode, sortedEks.(*SortedObjExtents).eks)
|
||||
inode, sortedEks.(*SortedExtents).eks)
|
||||
} else if proto.IsStorageClassBlobStore(storageClass) {
|
||||
log.LogInfof("action[fsmUpdateExtentKeyAfterMigration] inode %v current ek %v",
|
||||
inode, sortedEks.(*SortedExtents).eks)
|
||||
inode, sortedEks.(*SortedObjExtents).eks)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user