func (c *Config) Process() { var err error c.PruneStaleDropletsInterval = time.Duration(c.PruneStaleDropletsIntervalInSeconds) * time.Second c.DropletStaleThreshold = time.Duration(c.DropletStaleThresholdInSeconds) * time.Second c.PublishActiveAppsInterval = time.Duration(c.PublishActiveAppsIntervalInSeconds) * time.Second c.StartResponseDelayInterval = time.Duration(c.StartResponseDelayIntervalInSeconds) * time.Second c.EndpointTimeout = time.Duration(c.EndpointTimeoutInSeconds) * time.Second if c.StartResponseDelayInterval > c.DropletStaleThreshold { c.DropletStaleThreshold = c.StartResponseDelayInterval log := steno.NewLogger("config.logger") log.Warnf("DropletStaleThreshold (%s) cannot be less than StartResponseDelayInterval (%s); setting both equal to StartResponseDelayInterval and continuing", c.DropletStaleThreshold, c.StartResponseDelayInterval) } drain := c.DrainTimeoutInSeconds if drain == 0 { drain = c.EndpointTimeoutInSeconds } c.DrainTimeout = time.Duration(drain) * time.Second c.Ip, err = vcap.LocalIP() if err != nil { panic(err) } }
func (c *Config) Process() { var err error c.PruneStaleDropletsInterval = time.Duration(c.PruneStaleDropletsIntervalInSeconds) * time.Second c.DropletStaleThreshold = time.Duration(c.DropletStaleThresholdInSeconds) * time.Second c.PublishActiveAppsInterval = time.Duration(c.PublishActiveAppsIntervalInSeconds) * time.Second c.StartResponseDelayInterval = time.Duration(c.StartResponseDelayIntervalInSeconds) * time.Second c.Ip, err = vcap.LocalIP() if err != nil { panic(err) } }
func (r *Router) greetMessage() ([]byte, error) { host, err := vcap.LocalIP() if err != nil { return nil, err } d := vcap.RouterStart{ Id: r.component.UUID, Hosts: []string{host}, MinimumRegisterIntervalInSeconds: r.config.StartResponseDelayIntervalInSeconds, } return json.Marshal(d) }
func (r *Router) greetMessage() ([]byte, error) { host, err := vcap.LocalIP() if err != nil { return nil, err } d := vcap.RouterStart{ vcap.GenerateUUID(), []string{host}, r.config.StartResponseDelayIntervalInSeconds, } return json.Marshal(d) }
func (c *Config) Process() { var err error c.PruneStaleDropletsInterval = time.Duration(c.PruneStaleDropletsIntervalInSeconds) * time.Second c.DropletStaleThreshold = time.Duration(c.DropletStaleThresholdInSeconds) * time.Second c.PublishActiveAppsInterval = time.Duration(c.PublishActiveAppsIntervalInSeconds) * time.Second c.StartResponseDelayInterval = time.Duration(c.StartResponseDelayIntervalInSeconds) * time.Second c.EndpointTimeout = time.Duration(c.EndpointTimeoutInSeconds) * time.Second drain := c.DrainTimeoutInSeconds if drain == 0 { drain = c.EndpointTimeoutInSeconds } c.DrainTimeout = time.Duration(drain) * time.Second c.Ip, err = vcap.LocalIP() if err != nil { panic(err) } }
os.RemoveAll(tmpdir) if gorouterSession != nil { stopGorouter(gorouterSession) } }) Context("Drain", func() { var config *config.Config var localip string var statusPort uint16 var proxyPort uint16 BeforeEach(func() { var err error localip, err = vcap.LocalIP() Ω(err).ShouldNot(HaveOccurred()) statusPort = test_util.NextAvailPort() proxyPort = test_util.NextAvailPort() cfgFile := filepath.Join(tmpdir, "config.yml") config = createConfig(cfgFile, statusPort, proxyPort) gorouterSession = startGorouterSession(cfgFile) }) It("waits for all requests to finish", func() { mbusClient, err := newMessageBus(config) Ω(err).ShouldNot(HaveOccurred())