Skip to content
This repository was archived by the owner on Aug 1, 2024. It is now read-only.

Commit 8009b94

Browse files
committed
fix: restart credentials devserver in its provisioning script
It seems that Credentials' devserver doesn't get restarted by the commands in its provisioning script. This has been resulting in it silently failing healthchecks in the provisioning test GitHub action workflow, with the devserver reporting missing requirements. The cause of the failure passing silently is addressed in an adjecent commit.
1 parent 68a1ba3 commit 8009b94

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

provision-credentials.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,6 @@ docker-compose exec -T ${name} bash -e -c 'source /edx/app/credentials/credentia
3030
# started if they do not care about static assets
3131
echo -e "${GREEN}Compiling static assets for ${name}...${NC}"
3232
docker-compose exec -T ${name} bash -e -c ' if ! source /edx/app/credentials/credentials_env && cd /edx/app/credentials/credentials && make static 2>creds_make_static.err; then echo "------- Last 100 lines of stderr"; tail creds_make_static.err -n 100; echo "-------"; fi;' -- "$name"
33+
34+
# Restart credentials devserver.
35+
make dev.restart-devserver.credentials

0 commit comments

Comments
 (0)