You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by bm...@apache.org on 2018/10/17 01:12:30 UTC

[mesos] 02/02: Documented that UUID is a 128 bits (or 16 bytes).

This is an automated email from the ASF dual-hosted git repository.

bmahler pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git

commit 5b8f632e75d3c20be172c1678c04f77ae18cda1a
Author: Benjamin Mahler <bm...@apache.org>
AuthorDate: Tue Oct 16 11:54:25 2018 -0700

    Documented that UUID is a 128 bits (or 16 bytes).
    
    This came up when James DeFelice was asking about the number
    of bytes in this message. We should document it.
    
    Review: https://reviews.apache.org/r/69053
---
 include/mesos/mesos.proto    | 2 +-
 include/mesos/v1/mesos.proto | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/mesos/mesos.proto b/include/mesos/mesos.proto
index 5a985fc..72966da 100644
--- a/include/mesos/mesos.proto
+++ b/include/mesos/mesos.proto
@@ -2285,7 +2285,7 @@ message TaskResourceLimitation {
 
 
 /**
- * Describes a UUID.
+ * A 128 bit (16 byte) UUID, see RFC 4122.
  */
 message UUID {
   required bytes value = 1;
diff --git a/include/mesos/v1/mesos.proto b/include/mesos/v1/mesos.proto
index a5ebb78..c6c1dae 100644
--- a/include/mesos/v1/mesos.proto
+++ b/include/mesos/v1/mesos.proto
@@ -2278,7 +2278,7 @@ message TaskResourceLimitation {
 
 
 /**
- * Describes a UUID.
+ * A 128 bit (16 byte) UUID, see RFC 4122.
  */
 message UUID {
   required bytes value = 1;