Merge pull request #258 from gravitl/v0.7.3

updated version
This commit is contained in:
dcarns 2021-08-25 14:01:23 -04:00 committed by GitHub
commit 7fcf76764e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -73,7 +73,7 @@ func GetAPIConnString() string {
return conn
}
func GetVersion() string {
version := "0.7.2"
version := "0.7.3"
if config.Config.Server.Version != "" {
version = config.Config.Server.Version
}
@ -331,7 +331,7 @@ func GetPlatform() string {
platform := "linux"
if os.Getenv("PLATFORM") != "" {
platform = os.Getenv("PLATFORM")
} else if config.Config.Server.Platform != "" {
} else if config.Config.Server.Platform != "" {
platform = config.Config.Server.SQLConn
}
return platform