diff options
author | Carl Baldwin <carl@ecbaldwin.net> | 2019-07-24 09:02:18 -0600 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@gmail.com> | 2019-08-28 09:06:20 +0900 |
commit | 8900db7551a01d3dba019445b08357ffe0cc3bed (patch) | |
tree | e8e50be5aedff0bbe7989fb25a2fd523a7607f1a | |
parent | ed1aef36e72157ae981671baaa2fd54fdbeea7f2 (diff) |
Switch away from channel for one-off dry run
-rw-r--r-- | cmd/gobgpd/main.go | 13 | ||||
-rw-r--r-- | pkg/config/config.go | 4 |
2 files changed, 14 insertions, 3 deletions
diff --git a/cmd/gobgpd/main.go b/cmd/gobgpd/main.go index 68ea0cac..5834a406 100644 --- a/cmd/gobgpd/main.go +++ b/cmd/gobgpd/main.go @@ -123,9 +123,16 @@ func main() { } if opts.Dry { - configCh := make(chan *internal_cfg.BgpConfigSet) - go internal_cfg.ReadConfigfileServe(opts.ConfigFile, opts.ConfigType, configCh) - c := <-configCh + c, err := config.ReadConfigFile(opts.ConfigFile, opts.ConfigType) + if err != nil { + log.WithFields(log.Fields{ + "Topic": "Config", + "Error": err, + }).Fatalf("Can't read config file %s", opts.ConfigFile) + } + log.WithFields(log.Fields{ + "Topic": "Config", + }).Info("Finished reading the config file") if opts.LogLevel == "debug" { pretty.Println(c) } diff --git a/pkg/config/config.go b/pkg/config/config.go index 4a4394df..b369760b 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -13,6 +13,10 @@ import ( "github.com/osrg/gobgp/pkg/server" ) +func ReadConfigFile(configFile, configType string) (*config.BgpConfigSet, error) { + return config.ReadConfigfile(configFile, configType) +} + func marshalRouteTargets(l []string) ([]*any.Any, error) { rtList := make([]*any.Any, 0, len(l)) for _, rtString := range l { |