Skip to content

Commit

Permalink
Merge pull request #1596 from fatedier/dev
Browse files Browse the repository at this point in the history
v0.31.1, fix bugs
  • Loading branch information
fatedier authored Jan 6, 2020
2 parents 30c246c + 4832a2a commit f480160
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions models/config/proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ func (cfg *BaseProxyConf) UnmarshalFromIni(prefix string, name string, section i
cfg.HealthCheckUrl = s + cfg.HealthCheckUrl
}

cfg.Metas = make(map[string]string)
for k, v := range section {
if strings.HasPrefix(k, "meta_") {
cfg.Metas[strings.TrimPrefix(k, "meta_")] = v
Expand Down
2 changes: 1 addition & 1 deletion utils/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"strings"
)

var version string = "0.31.0"
var version string = "0.31.1"

func Full() string {
return version
Expand Down

0 comments on commit f480160

Please sign in to comment.