1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 07:49:41 +02:00

style(proxy): fix function name (#4970)

This commit is contained in:
Chaim Lev-Ari 2021-04-09 00:02:48 +03:00 committed by GitHub
parent c04bbb5775
commit ac7d819620
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 12 additions and 12 deletions

View file

@ -11,7 +11,7 @@ import (
func swarmInspectOperation(response *http.Response, executor *operationExecutor) error {
// SwarmInspect response is a JSON object
// https://docs.docker.com/engine/api/v1.30/#operation/SwarmInspect
responseObject, err := responseutils.GetResponseAsJSONOBject(response)
responseObject, err := responseutils.GetResponseAsJSONObject(response)
if err != nil {
return err
}