diff --git a/container/grpc/service_grpc.pb.go b/container/grpc/service_grpc.pb.go index 182755c..c8b78d7 100644 Binary files a/container/grpc/service_grpc.pb.go and b/container/grpc/service_grpc.pb.go differ diff --git a/container/status.go b/container/status.go index 0535716..7f0edc0 100644 --- a/container/status.go +++ b/container/status.go @@ -25,4 +25,8 @@ const ( // StatusNotFound is a local status.Code value for // CONTAINER_NOT_FOUND container failure. StatusNotFound status.Code = iota + + // StatusEACLNotFound is a local status.Code value for + // EACL_NOT_FOUND failure. + StatusEACLNotFound ) diff --git a/container/status_test.go b/container/status_test.go index 0826d8a..c7d9c91 100644 --- a/container/status_test.go +++ b/container/status_test.go @@ -10,5 +10,6 @@ import ( func TestStatusCodes(t *testing.T) { statustest.TestCodes(t, container.LocalizeFailStatus, container.GlobalizeFail, container.StatusNotFound, 3072, + container.StatusEACLNotFound, 3073, ) } diff --git a/status/grpc/types.pb.go b/status/grpc/types.pb.go index 98af29a..c18467c 100644 Binary files a/status/grpc/types.pb.go and b/status/grpc/types.pb.go differ