diff --git a/testing/notification-test-core/src/main/java/org/opengroup/osdu/notification/util/Config.java b/testing/notification-test-core/src/main/java/org/opengroup/osdu/notification/util/Config.java
index e811d98dc0e4653c37f2f4d04610cd17d8282fff..e1fafaf80af20c436bb8160afbf293ab884d16f7 100644
--- a/testing/notification-test-core/src/main/java/org/opengroup/osdu/notification/util/Config.java
+++ b/testing/notification-test-core/src/main/java/org/opengroup/osdu/notification/util/Config.java
@@ -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;