Merge pull request #311 from vmarmol/fix

Fix Docker ALL reference
This commit is contained in:
Victor Marmol 2014-11-17 10:28:28 -08:00
commit c7886629f8

View File

@ -22,7 +22,7 @@ func serveDockerPage(m manager.Manager, w http.ResponseWriter, u *url.URL) error
containerName := u.Path[len(DockerPage):]
var data *pageData
if containerName == "/" {
if containerName == "" {
// Get the containers.
reqParams := info.ContainerInfoRequest{
NumStats: 0,