mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-12-18 12:47:50 +08:00
avoid double warpping
Signed-off-by: divinerapier <poriter.coco@gmail.com>
This commit is contained in:
parent
344ce90315
commit
9e3b77c3ad
@ -34,6 +34,9 @@ type FilerStoreWrapper struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func NewFilerStoreWrapper(store FilerStore) *FilerStoreWrapper {
|
func NewFilerStoreWrapper(store FilerStore) *FilerStoreWrapper {
|
||||||
|
if innerStore, ok := store.(*FilerStoreWrapper); ok {
|
||||||
|
return innerStore
|
||||||
|
}
|
||||||
return &FilerStoreWrapper{
|
return &FilerStoreWrapper{
|
||||||
actualStore: store,
|
actualStore: store,
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user