From 5d18a876d64386822abdc0d3d4dabebcbcf00fc6 Mon Sep 17 00:00:00 2001 From: crusaderky Date: Sat, 5 Mar 2022 00:55:35 +0000 Subject: [PATCH] Update distributed/worker_memory.py --- distributed/worker_memory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distributed/worker_memory.py b/distributed/worker_memory.py index a9d3f841ba5..ca4c163ec27 100644 --- a/distributed/worker_memory.py +++ b/distributed/worker_memory.py @@ -140,7 +140,7 @@ def __init__( ): assert self.memory_monitor_interval is not None pc = PeriodicCallback( - # Don't store worker ar self.worker to avoid creating a circular + # Don't store worker as self.worker to avoid creating a circular # dependency. We could have alternatively used a weakref. # FIXME annotations: https://github.com/tornadoweb/tornado/issues/3117 partial(self.memory_monitor, worker), # type: ignore