You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@mesos.apache.org by "Dr. Stefan Schimanski (JIRA)" <ji...@apache.org> on 2015/08/05 18:41:04 UTC

[jira] [Created] (MESOS-3210) DiscoveryInfo is broken in state.json

Dr. Stefan Schimanski created MESOS-3210:
--------------------------------------------

             Summary: 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)