mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-24 14:31:44 +01:00
perf: fixes an issue with too many containers (#3144)
This commit is contained in:
@@ -182,7 +182,6 @@ func (s *server) FindContainer(ctx context.Context, in *pb.FindContainerRequest)
|
||||
Command: container.Command,
|
||||
Created: timestamppb.New(container.Created),
|
||||
State: container.State,
|
||||
Status: container.Status,
|
||||
Health: container.Health,
|
||||
Host: container.Host,
|
||||
Tty: container.Tty,
|
||||
@@ -224,7 +223,6 @@ func (s *server) ListContainers(ctx context.Context, in *pb.ListContainersReques
|
||||
ImageId: container.ImageID,
|
||||
Created: timestamppb.New(container.Created),
|
||||
State: container.State,
|
||||
Status: container.Status,
|
||||
Health: container.Health,
|
||||
Host: container.Host,
|
||||
Tty: container.Tty,
|
||||
@@ -269,7 +267,6 @@ func (s *server) StreamContainerStarted(in *pb.StreamContainerStartedRequest, ou
|
||||
ImageId: container.ImageID,
|
||||
Created: timestamppb.New(container.Created),
|
||||
State: container.State,
|
||||
Status: container.Status,
|
||||
Health: container.Health,
|
||||
Host: container.Host,
|
||||
Tty: container.Tty,
|
||||
|
||||
Reference in New Issue
Block a user