Skip to content

Commit 25c4b0c

Browse files
authored
Merge pull request #166 from Dstack-TEE/rm-command
guest-agent: Remove `command` from the api
2 parents e8b036d + f62282e commit 25c4b0c

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

guest-agent/src/guest_api_service.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ pub(crate) async fn list_containers() -> Result<ListContainersResponse> {
129129
names: c.names.unwrap_or_default(),
130130
image: c.image.unwrap_or_default(),
131131
image_id: c.image_id.unwrap_or_default(),
132-
command: c.command.unwrap_or_default(),
133132
created: c.created.unwrap_or_default(),
134133
state: c.state.unwrap_or_default(),
135134
status: c.status.unwrap_or_default(),

guest-api/proto/guest_api.proto

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,6 @@ message Container {
6262
string image = 3;
6363
// The ID of the image that this container was created from
6464
string image_id = 4;
65-
// Command to run when starting the container
66-
string command = 5;
6765
// When the container was created
6866
int64 created = 6;
6967
// The state of this container (e.g. Exited)

0 commit comments

Comments
 (0)