fix for mysql2 postgres2 on fast dropping buckets

This commit is contained in:
Chris Lu
2021-06-13 07:31:56 -07:00
parent 1e76fc994a
commit 28a4a1f8d6
2 changed files with 2 additions and 2 deletions

View File

@@ -43,5 +43,5 @@ type FilerStore interface {
type BucketAware interface { type BucketAware interface {
OnBucketCreation(bucket string) OnBucketCreation(bucket string)
OnBucketDeletion(bucket string) OnBucketDeletion(bucket string)
IsDropBucketAltogether() bool CanDropWholeBucket() bool
} }

View File

@@ -45,7 +45,7 @@ func NewFilerStoreWrapper(store FilerStore) *FilerStoreWrapper {
func (fsw *FilerStoreWrapper) CanDropWholeBucket() bool { func (fsw *FilerStoreWrapper) CanDropWholeBucket() bool {
if ba, ok := fsw.defaultStore.(BucketAware); ok { if ba, ok := fsw.defaultStore.(BucketAware); ok {
return ba.IsDropBucketAltogether() return ba.CanDropWholeBucket()
} }
return false return false
} }