Skip to content

Commit

Permalink
fix root config and getty
Browse files Browse the repository at this point in the history
  • Loading branch information
quiet-xu committed Mar 31, 2022
1 parent 97f45f4 commit a55d078
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions config/root_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ func (rc *RootConfig) Init() error {
if err := rc.Shutdown.Init(); err != nil {
return err
}
SetRootConfig(*rc)
// todo if we can remove this from Init in the future?
rc.Start()
return nil
Expand Down
4 changes: 2 additions & 2 deletions remoting/getty/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ type (
QueueNumber int `default:"0" yaml:"queue-number" json:"queue-number,omitempty"`

// session tcp parameters
GettySessionParam GettySessionParam `required:"true" yaml:",inline" json:",inline"`
GettySessionParam GettySessionParam `required:"true" yaml:"getty-session-param" json:"getty-session-param,omitempty"`
}

// ClientConfig holds supported types by the multi config package
Expand Down Expand Up @@ -104,7 +104,7 @@ type (
QueueNumber int `default:"0" yaml:"queue-number" json:"queue-number,omitempty"`

// session tcp parameters
GettySessionParam GettySessionParam `required:"true" yaml:",inline" json:",inline"`
GettySessionParam GettySessionParam `required:"true" yaml:"getty-session-param" json:"getty-session-param,omitempty"`
}
)

Expand Down

0 comments on commit a55d078

Please sign in to comment.