Skip to content

Commit 4cde473

Browse files
authored
Fixes #149 | Calculate ignored healthchecks once (#150)
1 parent 8353e73 commit 4cde473

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

consul/consul.go

+9-9
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,18 @@ import (
1515
)
1616

1717
type Consul struct {
18-
agents Agents
19-
config Config
18+
agents Agents
19+
config Config
20+
ignoredHealthCheckTypes []string
2021
}
2122

2223
type ServicesProvider func(agent *consulapi.Client) ([]*service.Service, error)
2324

2425
func New(config Config) *Consul {
2526
return &Consul{
26-
agents: NewAgents(&config),
27-
config: config,
27+
agents: NewAgents(&config),
28+
config: config,
29+
ignoredHealthCheckTypes: ignoredHealthCheckTypesFromRawConfigEntry(config.IgnoredHealthChecks),
2830
}
2931
}
3032

@@ -300,10 +302,8 @@ func (c *Consul) serviceID(task *apps.Task, name string, port int) string {
300302

301303
func (c *Consul) marathonToConsulChecks(task *apps.Task, healthChecks []apps.HealthCheck, serviceAddress string) consulapi.AgentServiceChecks {
302304
var checks = make(consulapi.AgentServiceChecks, 0, len(healthChecks))
303-
304-
ignoredHealthCheckTypes := c.getIgnoredHealthCheckTypes()
305305
for _, check := range healthChecks {
306-
if contains(ignoredHealthCheckTypes, check.Protocol) {
306+
if contains(c.ignoredHealthCheckTypes, check.Protocol) {
307307
log.WithField("Id", task.AppID.String()).WithField("Address", serviceAddress).
308308
Info(fmt.Sprintf("Ignoring health check of type %s", check.Protocol))
309309
continue
@@ -365,9 +365,9 @@ func getHealthCheckPort(check apps.HealthCheck, task apps.Task) (int, error) {
365365
return port, nil
366366
}
367367

368-
func (c *Consul) getIgnoredHealthCheckTypes() []string {
368+
func ignoredHealthCheckTypesFromRawConfigEntry(raw string) []string {
369369
ignoredTypes := make([]string, 0)
370-
for _, ignoredType := range strings.Split(strings.ToUpper(c.config.IgnoredHealthChecks), ",") {
370+
for _, ignoredType := range strings.Split(strings.ToUpper(raw), ",") {
371371
var ignoredType = strings.TrimSpace(ignoredType)
372372
if ignoredType != "" {
373373
ignoredTypes = append(ignoredTypes, ignoredType)

consul/consul_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ func TestGetIgnoredHealthCheckTypes(t *testing.T) {
693693
consul := New(Config{IgnoredHealthChecks: types.config})
694694

695695
// then
696-
assert.Equal(t, types.parsed, consul.getIgnoredHealthCheckTypes())
696+
assert.Equal(t, types.parsed, consul.ignoredHealthCheckTypes)
697697
}
698698
}
699699

0 commit comments

Comments
 (0)