[
https://issues.apache.org/jira/browse/AMBARI-7893?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14180063#comment-14180063
]
Hudson commented on AMBARI-7893:
--------------------------------
SUCCESS: Integrated in Ambari-branch-1.7.0 #168 (See
[https://builds.apache.org/job/Ambari-branch-1.7.0/168/])
AMBARI-7893 Slider View: Updating view params in UI breaks masked params.
(atkach) (atkach:
http://git-wip-us.apache.org/repos/asf?p=ambari.git&a=commit&h=e112f7b53d3b34e0710c90cc2533b68bc621fbcd)
*
ambari-admin/src/main/resources/ui/admin-web/app/scripts/controllers/ambariViews/ViewsEditCtrl.js
> Slider View: Updating view params in UI breaks masked params
> ------------------------------------------------------------
>
> Key: AMBARI-7893
> URL: https://issues.apache.org/jira/browse/AMBARI-7893
> Project: Ambari
> Issue Type: Bug
> Components: ambari-admin
> Affects Versions: 1.7.0
> Reporter: Andrii Tkach
> Assignee: Andrii Tkach
> Priority: Critical
> Fix For: 1.7.0
>
> Attachments: AMBARI-7893.patch, AMBARI-7893_branch-1.7.0.patch
>
>
> I created a slider view in the Ambari-Admin UI. The view had one masked
> parameter {{ambari.server.password}}. I entered "admin" and saw in the POST
> that the decoded value was uploaded:
> {code}
> {
> "ViewInstanceInfo": {
> "instance_name": "s2",
> "label": "s2",
> "visible": true,
> "icon_path": "",
> "icon64_path": "",
> "properties": {
> "ambari.server.url": "http://tdk-1:8080/api/c1/clusters/tdk",
> "ambari.server.username": "admin",
> "ambari.server.password": "admin",
> "view.kerberos.principal": "a",
> "view.kerberos.principal.keytab": "aa"
> },
> "description": "s2"
> }
> }
> {code}
> After saved, I editing and changed another param (say
> view.kerberos.principal). This broke the masked param. The reason is that the
> GET call to view parameters gives the encoded value.
> So POST takes decoded values and GET provides encoded values. So the next
> time UI PUTs, the encoded value is put resulting in original value corruption.
> The API should either always provided encoded or decoded values, but not both.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)