diff --git a/container/service.proto b/container/service.proto index 1fdc54f..69d96a3 100644 --- a/container/service.proto +++ b/container/service.proto @@ -73,7 +73,9 @@ service ContainerService { // container eACL has been successfully read; // - Common failures (SECTION_FAILURE_COMMON); // - **CONTAINER_NOT_FOUND** (3072, SECTION_CONTAINER): \ - // container not found. + // container not found; + // - **EACL_NOT_FOUND** (3073, SECTION_CONTAINER): \ + // eACL table not found. rpc GetExtendedACL(GetExtendedACLRequest) returns (GetExtendedACLResponse); // Announces the space values used by the container for P2P synchronization. diff --git a/proto-docs/container.md b/proto-docs/container.md index d11243d..b518a67 100644 --- a/proto-docs/container.md +++ b/proto-docs/container.md @@ -157,7 +157,9 @@ Statuses: container eACL has been successfully read; - Common failures (SECTION_FAILURE_COMMON); - **CONTAINER_NOT_FOUND** (3072, SECTION_CONTAINER): \ - container not found. + container not found; +- **EACL_NOT_FOUND** (3073, SECTION_CONTAINER): \ + eACL table not found. | Name | Input | Output | | ---- | ----- | ------ | diff --git a/proto-docs/status.md b/proto-docs/status.md index 1d02903..246292e 100644 --- a/proto-docs/status.md +++ b/proto-docs/status.md @@ -100,6 +100,7 @@ Section of statuses for container-related operations. | Name | Number | Description | | ---- | ------ | ----------- | | CONTAINER_NOT_FOUND | 0 | [**3072**] Container not found. | +| EACL_NOT_FOUND | 1 | [**3073**] eACL table not found. | diff --git a/status/types.proto b/status/types.proto index 6e05f62..eb0a3ed 100644 --- a/status/types.proto +++ b/status/types.proto @@ -127,6 +127,9 @@ enum Object { enum Container { // [**3072**] Container not found. CONTAINER_NOT_FOUND = 0; + + // [**3073**] eACL table not found. + EACL_NOT_FOUND = 1; } // Section of statuses for session-related operations.