Benjamin Mahler created MESOS-1876:
--------------------------------------
Summary: Remove deprecated 'slave_id' field in
ReregisterSlaveMessage.
Key: MESOS-1876
URL: https://issues.apache.org/jira/browse/MESOS-1876
Project: Mesos
Issue Type: Task
Components: technical debt
Reporter: Benjamin Mahler
This is to follow through on removing the deprecated field that we've been
phasing out. In 0.21.0, this field will no longer be read:
{code}
message ReregisterSlaveMessage {
// TODO(bmahler): slave_id is deprecated.
// 0.21.0: Now an optional field. Always written, never read.
// 0.22.0: Remove this field.
optional SlaveID slave_id = 1;
required SlaveInfo slave = 2;
repeated ExecutorInfo executor_infos = 4;
repeated Task tasks = 3;
repeated Archive.Framework completed_frameworks = 5;
}
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)