aboutsummaryrefslogtreecommitdiff
path: root/weed/util/constants.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2019-04-08 22:32:42 -0700
committerChris Lu <chris.lu@gmail.com>2019-04-08 22:32:42 -0700
commit88ba08cb9e8e15e34e481143a6beec1390dc4874 (patch)
tree67b1bf0580aead9f5b9bdf8f5884c567caa6d68a /weed/util/constants.go
parent784c5bb73a71bad615e500e4254c11e736b99a41 (diff)
downloadseaweedfs-88ba08cb9e8e15e34e481143a6beec1390dc4874.tar.xz
seaweedfs-88ba08cb9e8e15e34e481143a6beec1390dc4874.zip
add large disk support
Diffstat (limited to 'weed/util/constants.go')
-rw-r--r--weed/util/constants.go8
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)
)