1
0
Fork 0
forked from External/ergo

Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Daniel Oaks
5f9a66aaa2 Send labeled-response=all to indicate we do it for all commands 2020-06-15 20:44:48 +10:00

View file

@ -860,6 +860,9 @@ func LoadConfig(filename string) (config *Config, err error) {
config.Server.supportedCaps = caps.NewCompleteSet()
config.Server.capValues = make(caps.Values)
// indicates that we send labeled responses for ALL commands
config.Server.capValues[caps.LabeledResponse] = "all"
err = config.prepareListeners()
if err != nil {
return nil, fmt.Errorf("failed to prepare listeners: %v", err)