pkg/master: correct error string for GetPodInfo

This commit is contained in:
Claire Li 2014-07-11 23:09:43 -07:00
parent 89655584eb
commit d0aad153ee

View File

@ -56,7 +56,7 @@ func (p *PodCache) GetPodInfo(host, podID string) (api.PodInfo, error) {
defer p.podLock.Unlock()
value, ok := p.podInfo[podID]
if !ok {
return nil, errors.New("No cached pod info")
return nil, errors.New("no cached pod info")
} else {
return value, nil
}