Trust the endpoint state if we have a valid sandbox-id

Signed-off-by: Madhu Venugopal <madhu@docker.com>
This commit is contained in:
Madhu Venugopal 2017-02-02 14:46:59 -08:00
parent 71fff44c0b
commit 2a9be357f9
1 changed files with 3 additions and 0 deletions

View File

@ -181,6 +181,9 @@ type tableEntry struct {
}
func (ep *endpoint) Info() EndpointInfo {
if ep.sandboxID != "" {
return ep
}
n, err := ep.getNetworkFromStore()
if err != nil {
return nil