2
0
mirror of https://github.com/status-im/consul.git synced 2025-02-28 21:30:43 +00:00

13 lines
294 B
Go
Raw Normal View History

package metadata
import (
"github.com/hashicorp/go-version"
"github.com/hashicorp/serf/serf"
)
// Build extracts the Consul version info for a member.
func Build(m *serf.Member) (*version.Version, error) {
str := versionFormat.FindString(m.Tags["build"])
return version.NewVersion(str)
}