[ 
https://issues.apache.org/jira/browse/MESOS-3210?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14659601#comment-14659601
 ] 

Dr. Stefan Schimanski commented on MESOS-3210:
----------------------------------------------

If this structure is intended, it's completely fine. We will base Mesos-DNS 
DiscoveryInfo support on this and wanted to be sure that this is no bug.

> DiscoveryInfo is broken in state.json
> -------------------------------------
>
>                 Key: MESOS-3210
>                 URL: https://issues.apache.org/jira/browse/MESOS-3210
>             Project: Mesos
>          Issue Type: Bug
>          Components: master
>    Affects Versions: 0.23.0
>            Reporter: Dr. Stefan Schimanski
>
> The DiscoveryInfo field of a task in state.json is broken: ports and labels 
> fields are nested once too much.
> Got:
> {code}
> "discovery" : {
>                   "name" : "docker",
>                   "labels" : {
>                      "labels" : [
>                         {
>                            "key" : "canary",
>                            "value" : "Mallorca"
>                         }
>                      ]
>                   },
>                   "visibility" : "CLUSTER",
>                   "ports" : {
>                      "ports" : [
>                         {
>                            "name" : "health",
>                            "number" : 1080,
>                            "protocol" : "http"
>                         }
>                      ]
>                   }
>                },
> {code}
> Expected:
> {code}
> "discovery" : {
>                   "name" : "docker",
>                      "labels" : [
>                         {
>                            "key" : "canary",
>                            "value" : "Mallorca"
>                         }
>                      ]
>                   "visibility" : "CLUSTER",
>                      "ports" : [
>                         {
>                            "name" : "health",
>                            "number" : 1080,
>                            "protocol" : "http"
>                         }
>                      ]
>                },
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to