You are viewing a plain text version of this content. The canonical link for it is here.
Posted to yarn-dev@hadoop.apache.org by "Chandni Singh (JIRA)" <ji...@apache.org> on 2018/02/28 00:11:00 UTC

[jira] [Created] (YARN-7985) Service name is validated twice in ServiceClient when a service is created

Chandni Singh created YARN-7985:
-----------------------------------

             Summary: Service name is validated twice in ServiceClient when a service is created
                 Key: YARN-7985
                 URL: https://issues.apache.org/jira/browse/YARN-7985
             Project: Hadoop YARN
          Issue Type: Bug
          Components: yarn-native-services
            Reporter: Chandni Singh
            Assignee: Chandni Singh


In ServiceClient.actionCreate() :
{code:java}
ServiceApiUtil.validateNameFormat(serviceName, getConfig());
ServiceApiUtil.validateAndResolveService(service, fs, getConfig());{code}
However the ServiceApiUtil.validateAndResolveService(...), also validates the service name
{code:java}
if (StringUtils.isEmpty(service.getName())) {
  throw new IllegalArgumentException(
      RestApiErrorMessages.ERROR_APPLICATION_NAME_INVALID);
}

validateNameFormat(service.getName(), conf);{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: yarn-dev-unsubscribe@hadoop.apache.org
For additional commands, e-mail: yarn-dev-help@hadoop.apache.org