Description
Looks like the ApplicationId is now printed in 2 different formats. ApplicationIdPBImpl.java has a toString routine that prints it in the format: return "application_" + this.getClusterTimestamp() + "_" + this.getId();
While the webapps use ./hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/util/Apps.java toString that prints it like:
return _join("app", id.getClusterTimestamp(), id.getId());