Skip to content

Commit

Permalink
Set config to v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
i-hate-nicknames committed Mar 18, 2021
1 parent 9302eb1 commit 8bd07e2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
6 changes: 4 additions & 2 deletions pkg/visor/visorconfig/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ func Parse(log *logging.MasterLogger, path string, raw []byte) (*V1, error) {
}

switch cc.Version {
case V1Name: // Current version.
// parse any v1-compatible version with v1 parse procedure
case V110Name:
fallthrough
case V100Name:
return parseV1(cc, raw)
case V0Name, V0NameOldFormat, "":
return parseV0(cc, raw)
Expand All @@ -47,7 +50,6 @@ func parseV1(cc *Common, raw []byte) (*V1, error) {
conf := MakeBaseConfig(cc)

dec := json.NewDecoder(bytes.NewReader(raw))
dec.DisallowUnknownFields()
if err := dec.Decode(&conf); err != nil {
return nil, err
}
Expand Down
11 changes: 9 additions & 2 deletions pkg/visor/visorconfig/v1.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,15 @@ import (

//go:generate readmegen -n V1 -o ./README.md ./v1.go

// V1Name is the semantic version string for V1.
const V1Name = "v1.0.0"
// V100Name is the semantic version string for v1.0.0.
const V100Name = "v1.0.0"

// V110Name is the semantic version string for v1.1.0.
// Added MinHops field to V1Routing section of config
const V110Name = "v1.1.0"

// V1Name is the semantic version string for the most recent version of V1.
const V1Name = V110Name

// V1 is visor config v1.0.0
type V1 struct {
Expand Down

0 comments on commit 8bd07e2

Please sign in to comment.