Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ecs reporter: Fix some log lines that were passing *string instead of string #2060

Merged
merged 1 commit into from
Dec 14, 2016

Conversation

ekimekim
Copy link
Contributor

@ekimekim ekimekim commented Dec 5, 2016

@@ -73,7 +73,7 @@ func (c ecsClient) getServices() map[string]*ecs.Service {
}

for _, failure := range resp.Failures {
log.Warnf("Failed to describe ECS service %s, ECS service report may be incomplete: %s", failure.Arn, failure.Reason)
log.Warnf("Failed to describe ECS service %s, ECS service report may be incomplete: %s", *failure.Arn, *failure.Reason)

This comment was marked as abuse.

This comment was marked as abuse.

@@ -110,7 +110,7 @@ func (c ecsClient) getTasks(taskArns []string) (map[string]*ecs.Task, error) {
}

for _, failure := range resp.Failures {
log.Warnf("Failed to describe ECS task %s, ECS service report may be incomplete: %s", failure.Arn, failure.Reason)
log.Warnf("Failed to describe ECS task %s, ECS service report may be incomplete: %s", *failure.Arn, *failure.Reason)

This comment was marked as abuse.

@ekimekim
Copy link
Contributor Author

PTAL?

@ekimekim ekimekim merged commit 5ed63de into master Dec 14, 2016
@ekimekim ekimekim deleted the mike/awsecs/fix-log-formatting branch December 14, 2016 19:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants