1
0
mirror of https://github.com/rancher/steve.git synced 2025-08-31 15:11:31 +00:00

Update pkg/stores/proxy/proxy_store.go

Co-authored-by: Tom Lebreux <tom.lebreux@suse.com>
This commit is contained in:
Felipe Gehrke
2024-09-05 14:25:02 -03:00
committed by GitHub
parent 887912f9c6
commit 852a656893

View File

@@ -434,8 +434,7 @@ func (s *Store) Create(apiOp *types.APIRequest, schema *types.APISchema, params
input.SetNested(schema.ID[0:1]+"-", "metadata", "generateName") input.SetNested(schema.ID[0:1]+"-", "metadata", "generateName")
} }
if attributes.Namespaced(schema) { if attributes.Namespaced(schema) && namespace == "" {
if namespace == "" {
if apiOp.Namespace == "" { if apiOp.Namespace == "" {
return nil, nil, validation.ErrorCode{ return nil, nil, validation.ErrorCode{
Status: http.StatusUnprocessableEntity, Status: http.StatusUnprocessableEntity,
@@ -444,8 +443,6 @@ func (s *Store) Create(apiOp *types.APIRequest, schema *types.APISchema, params
} }
namespace = apiOp.Namespace namespace = apiOp.Namespace
}
input.SetNested(namespace, "metadata", "namespace") input.SetNested(namespace, "metadata", "namespace")
} }