diff options
| author | Chris Lu <chris.lu@gmail.com> | 2019-04-08 22:32:42 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2019-04-08 22:32:42 -0700 |
| commit | 88ba08cb9e8e15e34e481143a6beec1390dc4874 (patch) | |
| tree | 67b1bf0580aead9f5b9bdf8f5884c567caa6d68a /weed/util/constants.go | |
| parent | 784c5bb73a71bad615e500e4254c11e736b99a41 (diff) | |
| download | seaweedfs-88ba08cb9e8e15e34e481143a6beec1390dc4874.tar.xz seaweedfs-88ba08cb9e8e15e34e481143a6beec1390dc4874.zip | |
add large disk support
Diffstat (limited to 'weed/util/constants.go')
| -rw-r--r-- | weed/util/constants.go | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/weed/util/constants.go b/weed/util/constants.go index 0a4980e6f..1ed60b26f 100644 --- a/weed/util/constants.go +++ b/weed/util/constants.go @@ -1,5 +1,9 @@ package util -const ( - VERSION = "1.28" +import ( + "fmt" +) + +var ( + VERSION = fmt.Sprintf("%s %d.%d", sizeLimit, 1, 28) ) |
