diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-02-24 22:28:45 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-02-24 22:28:45 -0800 |
| commit | 6ab7368ef2556ef086d13c6d0d4454f1e98a5cd8 (patch) | |
| tree | 636d3d9cecfb44f71133c2387d01125fa75bc4a3 /weed/operation/assign_file_id.go | |
| parent | 5bcb44eda9b1dba57abf8cd9ce3b2d18518bd100 (diff) | |
| download | seaweedfs-6ab7368ef2556ef086d13c6d0d4454f1e98a5cd8.tar.xz seaweedfs-6ab7368ef2556ef086d13c6d0d4454f1e98a5cd8.zip | |
filer: dynamically create bucket under /buckets folder
Diffstat (limited to 'weed/operation/assign_file_id.go')
| -rw-r--r-- | weed/operation/assign_file_id.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/weed/operation/assign_file_id.go b/weed/operation/assign_file_id.go index b67d8b708..6da30605b 100644 --- a/weed/operation/assign_file_id.go +++ b/weed/operation/assign_file_id.go @@ -3,11 +3,13 @@ package operation import ( "context" "fmt" + "strings" + + "google.golang.org/grpc" + "github.com/chrislusf/seaweedfs/weed/pb/master_pb" "github.com/chrislusf/seaweedfs/weed/security" "github.com/chrislusf/seaweedfs/weed/util" - "google.golang.org/grpc" - "strings" ) type VolumeAssignRequest struct { |
