From 3cdde6492b51733162ba060dd896bbc4b377fee8 Mon Sep 17 00:00:00 2001 From: Stanislav Bogatyrev Date: Mon, 9 Nov 2020 23:29:52 +0300 Subject: [PATCH] Mention object split limitation by type Signed-off-by: Stanislav Bogatyrev --- object/types.proto | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/object/types.proto b/object/types.proto index 8b24389..cdfe6d2 100644 --- a/object/types.proto +++ b/object/types.proto @@ -8,7 +8,9 @@ option csharp_namespace = "NeoFS.API.v2.Object"; import "refs/types.proto"; import "session/types.proto"; -// Type of the object payload content. +// Type of the object payload content. Only `REGULAR` type objects can be split, +// hence `TOMBSTONE` and `STORAGEGROUP` payload is limited by maximal object +// size. enum ObjectType { // Just a normal object REGULAR = 0;