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 ff53ad7 commit 467f30dCopy full SHA for 467f30d
src/common/core/main.py
@@ -65,6 +65,9 @@ def execute_from_command_line(argv: list[str]) -> None:
65
subcommand = argv[1]
66
subcommand_main = {
67
"healthcheck": healthcheck.main,
68
+ # Backwards compatibility for task-processor health checks
69
+ # See https://github.com/Flagsmith/flagsmith-task-processor/issues/24
70
+ "checktaskprocessorthreadhealth": healthcheck.main,
71
}[subcommand]
72
except (IndexError, KeyError):
73
django_execute_from_command_line(argv)
0 commit comments