This is an automated email from the ASF dual-hosted git repository. yasith pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/airavata.git
commit 1224cceb7b8f94a9bd6a4d5a9d324800b99354bd Author: karanrk <[email protected]> AuthorDate: Thu Nov 22 01:44:31 2018 -0500 added missing ; --- .../org/apache/airavata/api/server/handler/AiravataServerHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airavata-api/airavata-api-server/src/main/java/org/apache/airavata/api/server/handler/AiravataServerHandler.java b/airavata-api/airavata-api-server/src/main/java/org/apache/airavata/api/server/handler/AiravataServerHandler.java index 669de75068..d243f5b760 100644 --- a/airavata-api/airavata-api-server/src/main/java/org/apache/airavata/api/server/handler/AiravataServerHandler.java +++ b/airavata-api/airavata-api-server/src/main/java/org/apache/airavata/api/server/handler/AiravataServerHandler.java @@ -541,7 +541,7 @@ public class AiravataServerHandler implements Airavata.Iface { AiravataClientException, AiravataSystemException, AuthorizationException, TException { RegistryService.Client regClient = registryClientPool.getResource(); try { - logger.debug("Airavata verifying if the gateway with " + gatewayId + "exits") + logger.debug("Airavata verifying if the gateway with " + gatewayId + "exits"); boolean result = regClient.isGatewayExist(gatewayId); registryClientPool.returnResource(regClient); return result;
