@@ -15,16 +15,18 @@ import (
15
15
)
16
16
17
17
type Consul struct {
18
- agents Agents
19
- config Config
18
+ agents Agents
19
+ config Config
20
+ ignoredHealthCheckTypes []string
20
21
}
21
22
22
23
type ServicesProvider func (agent * consulapi.Client ) ([]* service.Service , error )
23
24
24
25
func New (config Config ) * Consul {
25
26
return & Consul {
26
- agents : NewAgents (& config ),
27
- config : config ,
27
+ agents : NewAgents (& config ),
28
+ config : config ,
29
+ ignoredHealthCheckTypes : ignoredHealthCheckTypesFromRawConfigEntry (config .IgnoredHealthChecks ),
28
30
}
29
31
}
30
32
@@ -300,10 +302,8 @@ func (c *Consul) serviceID(task *apps.Task, name string, port int) string {
300
302
301
303
func (c * Consul ) marathonToConsulChecks (task * apps.Task , healthChecks []apps.HealthCheck , serviceAddress string ) consulapi.AgentServiceChecks {
302
304
var checks = make (consulapi.AgentServiceChecks , 0 , len (healthChecks ))
303
-
304
- ignoredHealthCheckTypes := c .getIgnoredHealthCheckTypes ()
305
305
for _ , check := range healthChecks {
306
- if contains (ignoredHealthCheckTypes , check .Protocol ) {
306
+ if contains (c . ignoredHealthCheckTypes , check .Protocol ) {
307
307
log .WithField ("Id" , task .AppID .String ()).WithField ("Address" , serviceAddress ).
308
308
Info (fmt .Sprintf ("Ignoring health check of type %s" , check .Protocol ))
309
309
continue
@@ -365,9 +365,9 @@ func getHealthCheckPort(check apps.HealthCheck, task apps.Task) (int, error) {
365
365
return port , nil
366
366
}
367
367
368
- func ( c * Consul ) getIgnoredHealthCheckTypes ( ) []string {
368
+ func ignoredHealthCheckTypesFromRawConfigEntry ( raw string ) []string {
369
369
ignoredTypes := make ([]string , 0 )
370
- for _ , ignoredType := range strings .Split (strings .ToUpper (c . config . IgnoredHealthChecks ), "," ) {
370
+ for _ , ignoredType := range strings .Split (strings .ToUpper (raw ), "," ) {
371
371
var ignoredType = strings .TrimSpace (ignoredType )
372
372
if ignoredType != "" {
373
373
ignoredTypes = append (ignoredTypes , ignoredType )
0 commit comments