Skip to content
Snippets Groups Projects
Commit 87a0f5ca authored by Neelesh Thakur's avatar Neelesh Thakur
Browse files

remove register service endpoint from gcp deployment

parent c9620df0
No related branches found
No related tags found
1 merge request!4remove register service endpoint from gcp deployment on integration tests
Pipeline #4281 failed
......@@ -42,10 +42,12 @@ public class Config {
config.hmacSecretValue = System.getProperty("HMAC_SECRET", System.getenv("HMAC_SECRET"));
if (env.equalsIgnoreCase("LOCAL")) {
String registerUrl = "https://os-register-dot-opendes.appspot.com/api/register/v1";
//make sure to run register service on a different port. You can also choose to point to Register service that is running in cloud
String registerUrl = "http://localhost:8081/";
//must have notification and register services running on different ports
config.HostUrl = "http://localhost:8080/";
//make sure to run register service on a different port. You can also choose to point to Register service that is running in cloud
config.GSAPushUrl = registerUrl+"/test/gsa-challenge/";
config.HMACPushUrl = registerUrl+"/test/challenge/";
config.RegisterServicePath = registerUrl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment