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

Ignore IPv6 addresses in Docker reporter #1552

Merged
merged 1 commit into from
Jun 15, 2016
Merged

Ignore IPv6 addresses in Docker reporter #1552

merged 1 commit into from
Jun 15, 2016

Conversation

tomwilkie
Copy link
Contributor

I found this useful why tracking down #1550

@@ -277,12 +277,15 @@ func (c *container) ports(localAddrs []net.IP) report.StringSet {
continue
}
for _, b := range bindings {
if b.HostIP == "0.0.0.0" {
for _, ip := range localAddrs {
if b.HostIP != "0.0.0.0" {

This comment was marked as abuse.

This comment was marked as abuse.

This comment was marked as abuse.

This comment was marked as abuse.

This comment was marked as abuse.

This comment was marked as abuse.

This comment was marked as abuse.

@2opremio
Copy link
Contributor

LGTM

@tomwilkie tomwilkie merged commit d888509 into master Jun 15, 2016
@tomwilkie tomwilkie deleted the no-ip-v6 branch June 15, 2016 15:05
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