1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-21 13:23:07 +01:00

chore: fixes async bug

This commit is contained in:
Amir Raminfar
2024-07-24 08:03:25 -07:00
parent 082bed2382
commit 2bd0031feb

View File

@@ -99,6 +99,7 @@ func (s *ContainerStore) ListContainers() ([]Container, error) {
}
func (s *ContainerStore) FindContainer(id string) (Container, error) {
s.wg.Wait()
container, ok := s.containers.Load(id)
if ok {