summaryrefslogtreecommitdiffstats
path: root/stator
diff options
context:
space:
mode:
authorAndrew Godwin2022-11-27 12:09:08 -0700
committerAndrew Godwin2022-11-27 12:09:08 -0700
commit8e9e3ecf6935db84bbc731252f592795675de685 (patch)
treeeb3f690cdc7504b3f8fc2da716c1bbfc4bacc36c /stator
parent6c7ddedd342553b53dd98c8de9cbe9e8e2e8cd7c (diff)
downloadtakahe-8e9e3ecf6935db84bbc731252f592795675de685.tar.gz
takahe-8e9e3ecf6935db84bbc731252f592795675de685.tar.bz2
takahe-8e9e3ecf6935db84bbc731252f592795675de685.zip
Some cleanup around editing
Diffstat (limited to 'stator')
-rw-r--r--stator/runner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/stator/runner.py b/stator/runner.py
index c78437d..5cc0091 100644
--- a/stator/runner.py
+++ b/stator/runner.py
@@ -52,7 +52,7 @@ class StatorRunner:
Config.system = await Config.aload_system()
print(f"{self.handled} tasks processed so far")
print("Running cleaning and scheduling")
- await self.run_cleanup()
+ await self.run_scheduling()
self.remove_completed_tasks()
await self.fetch_and_process_tasks()
@@ -75,7 +75,7 @@ class StatorRunner:
print("Complete")
return self.handled
- async def run_cleanup(self):
+ async def run_scheduling(self):
"""
Do any transition cleanup tasks
"""