2023-03-28 18:39:22 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2017-09-06 05:57:29 +00:00
|
|
|
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)
|
|
|
|
}
|