diff options
| author | tnextday <fw2k4@163.com> | 2015-12-14 22:01:30 +0800 |
|---|---|---|
| committer | tnextday <fw2k4@163.com> | 2015-12-14 22:01:30 +0800 |
| commit | f240c57f16e89a03be9ca583ab25703421e82e1e (patch) | |
| tree | ebf7951d718c1f72beb5e4c936a4c25e97a4c8c6 /go | |
| parent | 82e6d67ccca361a4841b9e40548c9d0d23981423 (diff) | |
| download | seaweedfs-f240c57f16e89a03be9ca583ab25703421e82e1e.tar.xz seaweedfs-f240c57f16e89a03be9ca583ab25703421e82e1e.zip | |
Rename ChunkManifest.GetData to ChunkManifest.Marshal
Diffstat (limited to 'go')
| -rw-r--r-- | go/operation/chunked_file.go | 2 | ||||
| -rw-r--r-- | go/operation/submit.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/go/operation/chunked_file.go b/go/operation/chunked_file.go index f8266087b..cb9ac80df 100644 --- a/go/operation/chunked_file.go +++ b/go/operation/chunked_file.go @@ -65,7 +65,7 @@ func LoadChunkManifest(buffer []byte, isGzipped bool) (*ChunkManifest, error) { return &cm, nil } -func (cm *ChunkManifest) GetData() ([]byte, error) { +func (cm *ChunkManifest) Marshal() ([]byte, error) { return json.Marshal(cm) } diff --git a/go/operation/submit.go b/go/operation/submit.go index ac5a3b55f..d996d63f0 100644 --- a/go/operation/submit.go +++ b/go/operation/submit.go @@ -180,7 +180,7 @@ func upload_one_chunk(filename string, reader io.Reader, master, } func upload_chunked_file_manifest(fileUrl string, manifest *ChunkManifest, jwt security.EncodedJwt) error { - buf, e := manifest.GetData() + buf, e := manifest.Marshal() if e != nil { return e } |
