Skip to content

Commit 14efbe5

Browse files
committed
0.0.3
1 parent 55dae68 commit 14efbe5

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ The changelog for Bonvoy
22

33
## Pending Release
44

5+
## 0.0.3
6+
7+
* Ensure query for containers does not include dead containers
8+
59
## 0.0.2
610

711
* Add `server memory` command to display server memory information

docker/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func (c *Client) GetEnvoyPid(name string) (int, error) {
2929
filter.Add("name", "connect-proxy-" + name)
3030

3131
containers, err := c.cli.ContainerList(context.Background(), types.ContainerListOptions{
32-
All: true,
32+
All: false,
3333
Filters: filter,
3434
})
3535
if err != nil { return 0, err }

0 commit comments

Comments
 (0)