You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ol...@apache.org on 2018/09/17 20:11:01 UTC

[ambari] branch trunk updated: AMBARI-24644. ADDENDUM - Log Search - Fix IP address setter

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

oleewere pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ambari.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 7289a4f  AMBARI-24644. ADDENDUM - Log Search - Fix IP address setter
7289a4f is described below

commit 7289a4faa8389b112abfd318133bf2c53ae2cba8
Author: Oliver Szabo <ol...@gmail.com>
AuthorDate: Mon Sep 17 22:09:19 2018 +0200

    AMBARI-24644. ADDENDUM - Log Search - Fix IP address setter
---
 .../src/main/java/org/apache/ambari/logsearch/conf/AuthPropsConfig.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ambari-logsearch/ambari-logsearch-server/src/main/java/org/apache/ambari/logsearch/conf/AuthPropsConfig.java b/ambari-logsearch/ambari-logsearch-server/src/main/java/org/apache/ambari/logsearch/conf/AuthPropsConfig.java
index 300a57f..b9c4f94 100644
--- a/ambari-logsearch/ambari-logsearch-server/src/main/java/org/apache/ambari/logsearch/conf/AuthPropsConfig.java
+++ b/ambari-logsearch/ambari-logsearch-server/src/main/java/org/apache/ambari/logsearch/conf/AuthPropsConfig.java
@@ -399,7 +399,7 @@ public class AuthPropsConfig {
     return proxyIp;
   }
 
-  public void setProxyIP(List<String> proxyIp) {
+  public void setProxyIp(List<String> proxyIp) {
     this.proxyIp = proxyIp;
   }
 }