[jira] [Updated] (AMBARI-22944) Wrong variable in KerberosKeytabDescriptor#toMap()

2018-02-19 Thread ASF GitHub Bot (JIRA)

 [ 
https://issues.apache.org/jira/browse/AMBARI-22944?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

ASF GitHub Bot updated AMBARI-22944:

Labels: pull-request-available  (was: )

> Wrong variable in KerberosKeytabDescriptor#toMap()
> --
>
> Key: AMBARI-22944
> URL: https://issues.apache.org/jira/browse/AMBARI-22944
> Project: Ambari
>  Issue Type: Bug
>Affects Versions: 2.7.0
>Reporter: Ted Yu
>Assignee: Sandor Molnar
>Priority: Major
>  Labels: pull-request-available
> Fix For: 2.7.0
>
>
> {code:title=org/apache/ambari/server/state/kerberos/KerberosKeytabDescriptor.java:466}
> if (!owner.isEmpty()) {
>   map.put(KEY_GROUP, group);
> }
> {code}
> The if statement checks wrong variable.
> Should read
> {code}
> if (!group.isEmpty()) {
>   map.put(KEY_GROUP, group);
> }
> {code}



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


[jira] [Updated] (AMBARI-22944) Wrong variable in KerberosKeytabDescriptor#toMap()

2018-02-08 Thread Robert Levas (JIRA)

 [ 
https://issues.apache.org/jira/browse/AMBARI-22944?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Robert Levas updated AMBARI-22944:
--
Description: 
{code:title=org/apache/ambari/server/state/kerberos/KerberosKeytabDescriptor.java:466}
if (!owner.isEmpty()) {
  map.put(KEY_GROUP, group);
}
{code}
The if statement checks wrong variable.

Should read
{code}
if (!group.isEmpty()) {
  map.put(KEY_GROUP, group);
}
{code}


  was:
{code:title=org/apache/ambari/server/state/kerberos/KerberosKeytabDescriptor.java:466}
if (!owner.isEmpty()) {
  map.put(KEY_GROUP, group);
}
{code}
The if statement checks wrong variable.


> Wrong variable in KerberosKeytabDescriptor#toMap()
> --
>
> Key: AMBARI-22944
> URL: https://issues.apache.org/jira/browse/AMBARI-22944
> Project: Ambari
>  Issue Type: Bug
>Affects Versions: 2.7.0
>Reporter: Ted Yu
>Assignee: Robert Levas
>Priority: Major
> Fix For: 2.7.0
>
>
> {code:title=org/apache/ambari/server/state/kerberos/KerberosKeytabDescriptor.java:466}
> if (!owner.isEmpty()) {
>   map.put(KEY_GROUP, group);
> }
> {code}
> The if statement checks wrong variable.
> Should read
> {code}
> if (!group.isEmpty()) {
>   map.put(KEY_GROUP, group);
> }
> {code}



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


[jira] [Updated] (AMBARI-22944) Wrong variable in KerberosKeytabDescriptor#toMap()

2018-02-08 Thread Robert Levas (JIRA)

 [ 
https://issues.apache.org/jira/browse/AMBARI-22944?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Robert Levas updated AMBARI-22944:
--
Description: 
{code:title=org/apache/ambari/server/state/kerberos/KerberosKeytabDescriptor.java:466}
if (!owner.isEmpty()) {
  map.put(KEY_GROUP, group);
}
{code}
The if statement checks wrong variable.

  was:
{code}
if (!owner.isEmpty()) {
  map.put(KEY_GROUP, group);
}
{code}
The if statement checks wrong variable.


> Wrong variable in KerberosKeytabDescriptor#toMap()
> --
>
> Key: AMBARI-22944
> URL: https://issues.apache.org/jira/browse/AMBARI-22944
> Project: Ambari
>  Issue Type: Bug
>Affects Versions: 2.7.0
>Reporter: Ted Yu
>Assignee: Robert Levas
>Priority: Major
> Fix For: 2.7.0
>
>
> {code:title=org/apache/ambari/server/state/kerberos/KerberosKeytabDescriptor.java:466}
> if (!owner.isEmpty()) {
>   map.put(KEY_GROUP, group);
> }
> {code}
> The if statement checks wrong variable.



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


[jira] [Updated] (AMBARI-22944) Wrong variable in KerberosKeytabDescriptor#toMap()

2018-02-08 Thread Robert Levas (JIRA)

 [ 
https://issues.apache.org/jira/browse/AMBARI-22944?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Robert Levas updated AMBARI-22944:
--
Fix Version/s: 2.7.0

> Wrong variable in KerberosKeytabDescriptor#toMap()
> --
>
> Key: AMBARI-22944
> URL: https://issues.apache.org/jira/browse/AMBARI-22944
> Project: Ambari
>  Issue Type: Bug
>Affects Versions: 2.7.0
>Reporter: Ted Yu
>Assignee: Robert Levas
>Priority: Major
> Fix For: 2.7.0
>
>
> {code}
> if (!owner.isEmpty()) {
>   map.put(KEY_GROUP, group);
> }
> {code}
> The if statement checks wrong variable.



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


[jira] [Updated] (AMBARI-22944) Wrong variable in KerberosKeytabDescriptor#toMap()

2018-02-08 Thread Robert Levas (JIRA)

 [ 
https://issues.apache.org/jira/browse/AMBARI-22944?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Robert Levas updated AMBARI-22944:
--
Affects Version/s: 2.7.0

> Wrong variable in KerberosKeytabDescriptor#toMap()
> --
>
> Key: AMBARI-22944
> URL: https://issues.apache.org/jira/browse/AMBARI-22944
> Project: Ambari
>  Issue Type: Bug
>Affects Versions: 2.7.0
>Reporter: Ted Yu
>Assignee: Robert Levas
>Priority: Major
> Fix For: 2.7.0
>
>
> {code}
> if (!owner.isEmpty()) {
>   map.put(KEY_GROUP, group);
> }
> {code}
> The if statement checks wrong variable.



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