This is an automated email from the ASF dual-hosted git repository.

isjarana pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/airavata.git


The following commit(s) were added to refs/heads/develop by this push:
     new 4acfa4aa84 fix hardcorded ipaddress
     new 30259b0d11 Merge pull request #429 from isururanawaka/metaschedular
4acfa4aa84 is described below

commit 4acfa4aa84d22941d69501347661b43e5a1222ed
Author: Isuru Ranawaka <[email protected]>
AuthorDate: Tue Jun 6 15:50:54 2023 -0400

    fix hardcorded ipaddress
---
 .../java/org/apache/airavata/metascheduler/core/utils/Utils.java    | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git 
a/modules/airavata-metascheduler/metascheduler-core/src/main/java/org/apache/airavata/metascheduler/core/utils/Utils.java
 
b/modules/airavata-metascheduler/metascheduler-core/src/main/java/org/apache/airavata/metascheduler/core/utils/Utils.java
index 90ff631869..154fc1e58c 100644
--- 
a/modules/airavata-metascheduler/metascheduler-core/src/main/java/org/apache/airavata/metascheduler/core/utils/Utils.java
+++ 
b/modules/airavata-metascheduler/metascheduler-core/src/main/java/org/apache/airavata/metascheduler/core/utils/Utils.java
@@ -43,10 +43,8 @@ public class Utils {
             registryClientPool = new ThriftClientPool<RegistryService.Client>(
                     tProtocol -> new RegistryService.Client(tProtocol),
                     
Utils.<RegistryService.Client>createGenericObjectPoolConfig(),
-//                    ServerSettings.getRegistryServerHost(),
-//                    
Integer.parseInt(ServerSettings.getRegistryServerPort()));
-                      "149.165.153.112",
-                    8970);
+                    ServerSettings.getRegistryServerHost(),
+                    Integer.parseInt(ServerSettings.getRegistryServerPort()));
             return registryClientPool;
         } catch (Exception e) {
             throw new RuntimeException("Unable to create registry client...", 
e);

Reply via email to