Skip to content
Snippets Groups Projects
Commit fdca415b authored by ethiraj krishnamanaidu's avatar ethiraj krishnamanaidu
Browse files

Merge branch 'gcp-it' into 'master'

remove register service endpoint from gcp deployment on integration tests

See merge request !4
parents c9620df0 87a0f5ca
No related branches found
No related tags found
1 merge request!4remove register service endpoint from gcp deployment on integration tests
Pipeline #4288 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