Skip to content

Commit

Permalink
fix cluster container ip query
Browse files Browse the repository at this point in the history
Signed-off-by: Evan Hazlett <ejhazlett@gmail.com>
  • Loading branch information
ehazlett committed Apr 5, 2020
1 parent 94e072a commit 79c8d2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/network.go
Expand Up @@ -147,7 +147,7 @@ func (s *Server) getContainerIPs(ctx context.Context, containerID string) ([]*ap
return s.getLocalContainerIPs(ctx, containerID)
}
// cluster enabled
cIPs, err := s.getClusterContainerIPs(ctx, containerID, heartbeatInterval)
cIPs, err := s.getClusterContainerIPs(ctx, containerID)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 79c8d2b

Please sign in to comment.