You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ds...@apache.org on 2018/08/29 08:28:28 UTC

[ambari] branch branch-2.7 updated: [AMBARI-24552] Storm service-check fails due to missung StringUtils class definition (dsen) (#2185)

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

dsen pushed a commit to branch branch-2.7
in repository https://gitbox.apache.org/repos/asf/ambari.git


The following commit(s) were added to refs/heads/branch-2.7 by this push:
     new 84ed8d1  [AMBARI-24552] Storm service-check fails due to missung StringUtils class definition (dsen) (#2185)
84ed8d1 is described below

commit 84ed8d1976d916d29f6ee59951e555222eb3c266
Author: Dmitry Sen <ds...@apache.org>
AuthorDate: Wed Aug 29 11:28:25 2018 +0300

    [AMBARI-24552] Storm service-check fails due to missung StringUtils class definition (dsen) (#2185)
---
 ambari-metrics/ambari-metrics-storm-sink/pom.xml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/ambari-metrics/ambari-metrics-storm-sink/pom.xml b/ambari-metrics/ambari-metrics-storm-sink/pom.xml
index 49b1752..c769c7f 100644
--- a/ambari-metrics/ambari-metrics-storm-sink/pom.xml
+++ b/ambari-metrics/ambari-metrics-storm-sink/pom.xml
@@ -127,6 +127,11 @@ limitations under the License.
               <pattern>org.apache.commons.codec</pattern>
               <shadedPattern>org.apache.hadoop.metrics2.sink.relocated.commons.codec</shadedPattern>
             </relocation>
+            <!-- The ambari-metrics-common package already has the org.apache.commons.lang, so just point there -->
+            <relocation>
+              <pattern>org.apache.commons.lang</pattern>
+              <shadedPattern>org.apache.ambari.metrics.relocated.commons.lang</shadedPattern>
+            </relocation>
           </relocations>
         </configuration>
       </plugin>