Repository: ambari Updated Branches: refs/heads/branch-2.5 bf3dad8b4 -> 74f0b5fc9
AMBARI-19114 Update hardcoded stack version warning to be more general than saying hdp (dili) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/74f0b5fc Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/74f0b5fc Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/74f0b5fc Branch: refs/heads/branch-2.5 Commit: 74f0b5fc982bb766333427fdd9a56fa6bce00d1a Parents: bf3dad8 Author: Di Li <[email protected]> Authored: Wed Dec 7 11:32:25 2016 -0500 Committer: Di Li <[email protected]> Committed: Wed Dec 7 12:05:19 2016 -0500 ---------------------------------------------------------------------- .../java/org/apache/ambari/server/checks/CheckDescription.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/74f0b5fc/ambari-server/src/main/java/org/apache/ambari/server/checks/CheckDescription.java ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/java/org/apache/ambari/server/checks/CheckDescription.java b/ambari-server/src/main/java/org/apache/ambari/server/checks/CheckDescription.java index 7f24bf4..45497b5 100644 --- a/ambari-server/src/main/java/org/apache/ambari/server/checks/CheckDescription.java +++ b/ambari-server/src/main/java/org/apache/ambari/server/checks/CheckDescription.java @@ -236,10 +236,10 @@ public class CheckDescription { public static CheckDescription HARDCODED_STACK_VERSION_PROPERTIES_CHECK = new CheckDescription("HARDCODED_STACK_VERSION_PROPERTIES_CHECK", PrereqCheckType.CLUSTER, - "Found hardcoded hdp stack version in property value.", + "Found hardcoded stack version in property value.", new ImmutableMap.Builder<String, String>() .put(AbstractCheckDescriptor.DEFAULT, - "Some properties seem to contain hardcoded hdp version string \"%s\"." + + "Some properties seem to contain hardcoded stack version string \"%s\"." + " That is a potential problem when doing stack update.").build()); public static CheckDescription VERSION_MISMATCH = new CheckDescription("VERSION_MISMATCH",
