Appease linter

spellcheck and required comments and required comment formatting
This commit is contained in:
Mike Lang
2016-11-23 20:58:14 -08:00
parent f5b7b5bec2
commit b53de4317d
2 changed files with 3 additions and 2 deletions

View File

@@ -51,7 +51,7 @@ func (c ecsClient) getDeploymentMap() map[string]string {
Services: page.ServiceArns,
})
if err != nil {
// rather than trying to propogate errors up, just log a warning here
// rather than trying to propagate errors up, just log a warning here
log.Warnf("Error describing some ECS services, ECS service report may be incomplete: %v", err)
return
}

View File

@@ -6,6 +6,7 @@ import (
"github.com/weaveworks/scope/report"
)
// TaskFamily is the key that stores the task family of an ECS Task
const (
TaskFamily = "ecs_task_family"
)
@@ -45,7 +46,7 @@ func getLabelInfo(rpt report.Report) map[string]map[string]*taskInfo {
return results
}
// implements Tagger
// Reporter implements Tagger
type Reporter struct {
}