Skip to content

Commit 146e8ce

Browse files
committed
Rename healthchecks.sh to check.sh
The logic for the rename is that the name "healthchecks" may imply that all the script is doing is querying the /healthcheck endpoint on each service. While this used to be the case, the script will soon be used for more sophisticated checks, such as the analytics pipeline acceptance tests, hence the generalized name for the script.
1 parent 74688e3 commit 146e8ce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -362,10 +362,10 @@ studio-static: ## Rebuild static assets for the Studio container
362362
static: | credentials-static discovery-static ecommerce-static lms-static studio-static ## Rebuild static assets for all service containers
363363

364364
healthchecks: ## Run a curl against all services' healthcheck endpoints to make sure they are up. This will eventually be parameterized
365-
$(WINPTY) bash ./healthchecks.sh all
365+
$(WINPTY) bash ./check.sh all
366366

367367
healthchecks.%:
368-
$(WINPTY) bash ./healthchecks.sh $*
368+
$(WINPTY) bash ./check.sh $*
369369

370370
e2e-tests: ## Run the end-to-end tests against the service containers
371371
docker run -t --network=devstack_default -v ${DEVSTACK_WORKSPACE}/edx-e2e-tests:/edx-e2e-tests -v ${DEVSTACK_WORKSPACE}/edx-platform:/edx-e2e-tests/lib/edx-platform --env-file ${DEVSTACK_WORKSPACE}/edx-e2e-tests/devstack_env edxops/e2e env TERM=$(TERM) bash -c 'paver e2e_test --exclude="whitelabel\|enterprise"'
File renamed without changes.

0 commit comments

Comments
 (0)