Skip to content
This repository has been archived by the owner on Apr 27, 2023. It is now read-only.

Commit

Permalink
Fix config issues and reduce TEST_FIXTURE
Browse files Browse the repository at this point in the history
  • Loading branch information
noris alsaadie committed Aug 27, 2020
1 parent c3bdd2f commit 6e53c4d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ test_integration: setup start

test_integration_master: setup start_master
make wait_healthy_apps
docker run --network reviewer -e BASE_URL="reviewer_nginx_1:9000" $(BROWSERTEST_MASTER)
docker run --network reviewer -e BASE_URL="reviewer_nginx_1:9000" -e TEST_FIXTURE="Authentication" $(BROWSERTEST_MASTER)

validate_chart:
${HELM} template ./charts/libero-reviewer --debug > /tmp/libero-reviewer.yaml
Expand Down
2 changes: 1 addition & 1 deletion config/proxy/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ http {
}

# @todo change to proxy once continuum-adaptor redirects
location /continuum-login {
location /auth-login {
return 301 http://reviewer-mocks:3003/submit;
# proxy_pass http://continuum-adaptor:3000/login;
}
Expand Down
4 changes: 2 additions & 2 deletions config/proxy/nginx.localhost.conf
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ http {
location /auth/ {
proxy_pass http://continuum-adaptor:3001/authenticate/;
}

# @todo change to proxy once continuum-adaptor redirects
location /continuum-login {
location /auth-login {
return 301 http://localhost:3003/submit;
# proxy_pass http://continuum-adaptor:3000/login;
}
Expand Down

0 comments on commit 6e53c4d

Please sign in to comment.