Skip to content
This repository was archived by the owner on Jul 7, 2020. It is now read-only.

Bug #17 #22

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion custom_components/docker_monitor/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,8 @@ def run(self):
streams = {}
while not self._stopper.isSet():
_LOGGER.info("Stats runner")
for name, container in self._api._containers.items():
containers = self._api._containers
for name, container in containers.items():
# Empty stats
stats = None
try:
Expand Down