aboutsummaryrefslogtreecommitdiff
path: root/weed/filer2/filechunks.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2020-03-28 13:42:35 -0700
committerChris Lu <chris.lu@gmail.com>2020-03-28 13:42:35 -0700
commit4aa82c95e6130b3eaa785f079a97552f354cefc4 (patch)
tree569f1b19ee9f33c5a24424adbfe57b8ce259354b /weed/filer2/filechunks.go
parenteedd33dda32e2725c333f25d414231a8c7688485 (diff)
downloadseaweedfs-4aa82c95e6130b3eaa785f079a97552f354cefc4.tar.xz
seaweedfs-4aa82c95e6130b3eaa785f079a97552f354cefc4.zip
refactor
Diffstat (limited to 'weed/filer2/filechunks.go')
-rw-r--r--weed/filer2/filechunks.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/filer2/filechunks.go b/weed/filer2/filechunks.go
index 4c972e14f..0c93c389b 100644
--- a/weed/filer2/filechunks.go
+++ b/weed/filer2/filechunks.go
@@ -73,7 +73,7 @@ type ChunkView struct {
LogicOffset int64
IsFullChunk bool
CipherKey []byte
- isGzipped bool
+ IsGzipped bool
}
func ViewFromChunks(chunks []*filer_pb.FileChunk, offset int64, size int64) (views []*ChunkView) {
@@ -105,7 +105,7 @@ func ViewFromVisibleIntervals(visibles []VisibleInterval, offset int64, size int
LogicOffset: offset,
IsFullChunk: isFullChunk,
CipherKey: chunk.cipherKey,
- isGzipped: chunk.isGzipped,
+ IsGzipped: chunk.isGzipped,
})
offset = min(chunk.stop, stop)
}