diff options
| author | chrislu <chris.lu@gmail.com> | 2022-07-21 18:23:53 -0700 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2022-07-21 18:23:53 -0700 |
| commit | c93f7ffa44b294ceef242700dce3288eb8569ced (patch) | |
| tree | 3e8e421a49c4c8c5eb408e1437df9ae1a5b97a14 /weed/filer/postgres2 | |
| parent | 6147b61b0a2ec576ade74c365884ac3bb51c56b6 (diff) | |
| download | seaweedfs-c93f7ffa44b294ceef242700dce3288eb8569ced.tar.xz seaweedfs-c93f7ffa44b294ceef242700dce3288eb8569ced.zip | |
explicit bucket aware declaration
Diffstat (limited to 'weed/filer/postgres2')
| -rw-r--r-- | weed/filer/postgres2/postgres2_store.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/weed/filer/postgres2/postgres2_store.go b/weed/filer/postgres2/postgres2_store.go index 0f573d8d0..3c57e4cb4 100644 --- a/weed/filer/postgres2/postgres2_store.go +++ b/weed/filer/postgres2/postgres2_store.go @@ -17,6 +17,8 @@ const ( CONNECTION_URL_PATTERN = "host=%s port=%d sslmode=%s connect_timeout=30" ) +var _ filer.BucketAware = (*PostgresStore2)(nil) + func init() { filer.Stores = append(filer.Stores, &PostgresStore2{}) } |
