Browse code

Remove execution driver

We use containerd and there is no execution driver anymore.

Addresses: https://github.com/docker/docker/issues/24461

Signed-off-by: Qiang Huang <h.huangqiang@huawei.com>

Qiang Huang authored on 2016/07/11 15:52:27
Showing 3 changed files
... ...
@@ -58,7 +58,6 @@ func runInfo(dockerCli *client.DockerCli) error {
58 58
 			fmt.Fprintf(dockerCli.Out(), "%s: %s\n", pair[0], pair[1])
59 59
 		}
60 60
 	}
61
-	ioutils.FprintfIfNotEmpty(dockerCli.Out(), "Execution Driver: %s\n", info.ExecutionDriver)
62 61
 	ioutils.FprintfIfNotEmpty(dockerCli.Out(), "Logging Driver: %s\n", info.LoggingDriver)
63 62
 	ioutils.FprintfIfNotEmpty(dockerCli.Out(), "Cgroup Driver: %s\n", info.CgroupDriver)
64 63
 
... ...
@@ -2194,7 +2194,6 @@ Display system-wide information
2194 2194
         "DockerRootDir": "/var/lib/docker",
2195 2195
         "Driver": "btrfs",
2196 2196
         "DriverStatus": [[""]],
2197
-        "ExecutionDriver": "native-0.1",
2198 2197
         "ExperimentalBuild": false,
2199 2198
         "HttpProxy": "http://test:test@localhost:8080",
2200 2199
         "HttpsProxy": "https://test:test@localhost:8080",
... ...
@@ -22,7 +22,6 @@ func (s *DockerSuite) TestInfoApi(c *check.C) {
22 22
 		"ContainersPaused",
23 23
 		"ContainersStopped",
24 24
 		"Images",
25
-		"ExecutionDriver",
26 25
 		"LoggingDriver",
27 26
 		"OperatingSystem",
28 27
 		"NCPU",