cadvisor/container/docker
Jonathan Boulle 4965f069b7 Fix case statements dealing with storageDriver
cf0adcc817 introduced two switch
statements to facilitate the addition of the `overlayStorageDriver`;
unfortunately neither of them conform to the Go switch semantic, which
does not fallthrough unless explicitly requested. In one case this was
innocuous (because a `break` was effectively the same as a no-op) but in
the other it would cause the `HasFilesystem` bool to not be set
appropriately in the case of `aufsStorageDriver` being used.

IMHO it's also more idiomatic to perform the default behaviour in the
default case rather than pre-setting and overriding it.
2015-12-02 16:04:01 -08:00
..
client.go Reuse cached docker client 2015-10-20 20:15:54 +01:00
factory.go Add support for Overlayfs. 2015-12-02 15:43:34 -08:00
fsHandler.go re-order the import package 2015-11-30 16:43:22 +08:00
handler.go Fix case statements dealing with storageDriver 2015-12-02 16:04:01 -08:00