This is an automated email from the ASF dual-hosted git repository. bennoe pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mesos.git
commit 78b071c3e4f00f932ff5530b5fa97ea66b837ee9 Author: Benno Evers <[email protected]> AuthorDate: Fri Nov 8 14:01:13 2019 +0100 Added 'source' field to operator reservation API. Added a new 'source' field to the operator API `ReserveResources` protobuf to prepare for the pending reservation update changes. Review: https://reviews.apache.org/r/71679/ --- include/mesos/master/master.proto | 1 + include/mesos/v1/master/master.proto | 1 + 2 files changed, 2 insertions(+) diff --git a/include/mesos/master/master.proto b/include/mesos/master/master.proto index 315809c..8c22802 100644 --- a/include/mesos/master/master.proto +++ b/include/mesos/master/master.proto @@ -154,6 +154,7 @@ message Call { // Reserve resources dynamically on a specific agent. message ReserveResources { required SlaveID slave_id = 1; + repeated Resource source = 3; repeated Resource resources = 2; } diff --git a/include/mesos/v1/master/master.proto b/include/mesos/v1/master/master.proto index 5c99112..40de358 100644 --- a/include/mesos/v1/master/master.proto +++ b/include/mesos/v1/master/master.proto @@ -155,6 +155,7 @@ message Call { // Reserve resources dynamically on a specific agent. message ReserveResources { required AgentID agent_id = 1; + repeated Resource source = 3; repeated Resource resources = 2; }
