[Docker] Docker lib version 6.1.0 breaks Glances #2366

pull/2369/head
nicolargo 2023-05-06 14:08:13 +02:00
parent 70964c6d32
commit b8b2303593
1 changed files with 1 additions and 1 deletions

View File

@ -708,7 +708,7 @@ class ThreadDockerGrabber(threading.Thread):
self._stopper = threading.Event() self._stopper = threading.Event()
# The docker-py return stats as a stream # The docker-py return stats as a stream
self._container = container self._container = container
self._stats_stream = container.stats(decode=True) self._stats_stream = container.stats(stream=True, decode=True)
# The class return the stats as a dict # The class return the stats as a dict
self._stats = {} self._stats = {}
logger.debug("docker plugin - Create thread for container {}".format(self._container.name)) logger.debug("docker plugin - Create thread for container {}".format(self._container.name))