We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 625e2ec commit b8b1976Copy full SHA for b8b1976
tasktiger/worker.py
@@ -761,7 +761,7 @@ def _mark_done() -> None:
761
execution = json.loads(execution)
762
else:
763
# This can happen if the child process dies unexpectedly.
764
- log.warn("execution not found", **log_context)
+ log.warning("execution not found", **log_context)
765
766
if (
767
execution
@@ -1016,7 +1016,7 @@ def run(
1016
if not self.scripts.can_replicate_commands:
1017
# Older Redis versions may create additional overhead when
1018
# executing pipelines.
1019
- self.log.warn("using old Redis version")
+ self.log.warning("using old Redis version")
1020
1021
if self.config["STATS_INTERVAL"]:
1022
stats_thread = StatsThread(self)
0 commit comments