Fix dockerfile
This commit is contained in:
@@ -71,6 +71,11 @@ func (a *App) Equal(other *App) bool {
|
||||
return a.Name == other.Name && a.Vip.Net.String() == other.Vip.Net.String()
|
||||
}
|
||||
|
||||
func (a *App) String() string {
|
||||
return fmt.Sprintf("Name: %s, Vip: %s, VipConf: %v, Monitors: %v, Nats: %v, Source: %s",
|
||||
a.Name, a.Vip.Net.String(), a.VipConfig, a.Monitors, a.Nats, a.Source)
|
||||
}
|
||||
|
||||
func NewApp(appName, vip string, vipConfig config.VipConfig, monitors []string, nats []string, source string) (*App, error) {
|
||||
if appName == "" {
|
||||
return nil, fmt.Errorf("Invalid app name")
|
||||
|
||||
@@ -168,7 +168,7 @@ func (m *MonitorMgr) Add(app *App) {
|
||||
appMon := &appMon{app: app, done: make(chan bool)}
|
||||
m.monitors[app.Name] = appMon
|
||||
go m.runLoop(appMon)
|
||||
glog.Infof("Registered a new app: %v", app)
|
||||
glog.Infof("Registered a new app: %v", app.String())
|
||||
}
|
||||
|
||||
// Remove removes an app from monitor manager, stops BGP
|
||||
|
||||
Reference in New Issue
Block a user