diff options
author | Rick Elrod <rick@elrod.me> | 2023-05-24 20:27:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-24 20:27:55 +0200 |
commit | bac124004fe80baf5462c80d39de2162d9937a32 (patch) | |
tree | c7b290b582dbab79d1e23a1d5ef0fa68087b4a19 /Makefile | |
parent | Spelling and codespelling corrections from community PR (diff) | |
download | awx-bac124004fe80baf5462c80d39de2162d9937a32.tar.xz awx-bac124004fe80baf5462c80d39de2162d9937a32.zip |
Rename heartbeet daemon to ws_heartbeat (#14041)
Signed-off-by: Rick Elrod <rick@elrod.me>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -267,11 +267,11 @@ run-wsrelay: $(PYTHON) manage.py run_wsrelay ## Start the heartbeat process in background in development environment. -run-heartbeet: +run-ws-heartbeat: @if [ "$(VENV_BASE)" ]; then \ . $(VENV_BASE)/awx/bin/activate; \ fi; \ - $(PYTHON) manage.py run_heartbeet + $(PYTHON) manage.py run_ws_heartbeat reports: mkdir -p $@ |