new version format and some cleanup

This commit is contained in:
Anand Babu (AB) Periasamy 2015-09-18 23:33:28 -07:00
parent d1f1b7ac31
commit 89a86948b5

View File

@ -19,8 +19,6 @@ package rpc
import (
"net/http"
"runtime"
"github.com/minio/minio/pkg/version"
)
// VersionArgs basic json RPC params
@ -40,7 +38,8 @@ type VersionReply struct {
// Get version
func (v *VersionService) Get(r *http.Request, args *VersionArgs, reply *VersionReply) error {
reply.Version = "0.0.1"
reply.BuildDate = version.Version
//TODO: Better approach needed here to pass global states like version. --ab.
// reply.BuildDate = version.Version
reply.Architecture = runtime.GOARCH
reply.OperatingSystem = runtime.GOOS
return nil