mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-09-03 10:17:46 +00:00
Merge pull request #99193 from zhijianli88/subresource
request.go: correct subresource referencing
This commit is contained in:
@@ -242,7 +242,7 @@ func (r *Request) SubResource(subresources ...string) *Request {
|
|||||||
}
|
}
|
||||||
subresource := path.Join(subresources...)
|
subresource := path.Join(subresources...)
|
||||||
if len(r.subresource) != 0 {
|
if len(r.subresource) != 0 {
|
||||||
r.err = fmt.Errorf("subresource already set to %q, cannot change to %q", r.resource, subresource)
|
r.err = fmt.Errorf("subresource already set to %q, cannot change to %q", r.subresource, subresource)
|
||||||
return r
|
return r
|
||||||
}
|
}
|
||||||
for _, s := range subresources {
|
for _, s := range subresources {
|
||||||
|
Reference in New Issue
Block a user