Fixed errcheck in server/channel/api4/job.go (#28420)
Этот коммит содержится в:
@@ -86,7 +86,6 @@ issues:
|
|||||||
channels/api4/integration_action_test.go|\
|
channels/api4/integration_action_test.go|\
|
||||||
channels/api4/ip_filtering.go|\
|
channels/api4/ip_filtering.go|\
|
||||||
channels/api4/ip_filtering_test.go|\
|
channels/api4/ip_filtering_test.go|\
|
||||||
channels/api4/job.go|\
|
|
||||||
channels/api4/job_test.go|\
|
channels/api4/job_test.go|\
|
||||||
channels/api4/ldap.go|\
|
channels/api4/ldap.go|\
|
||||||
channels/api4/license.go|\
|
channels/api4/license.go|\
|
||||||
|
|||||||
@@ -210,7 +210,9 @@ func getJobs(c *Context, w http.ResponseWriter, r *http.Request) {
|
|||||||
c.Err = model.NewAppError("getJobs", "api.marshal_error", nil, "", http.StatusInternalServerError).Wrap(err)
|
c.Err = model.NewAppError("getJobs", "api.marshal_error", nil, "", http.StatusInternalServerError).Wrap(err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
w.Write(js)
|
if _, err := w.Write(js); err != nil {
|
||||||
|
c.Logger.Warn("Error while writing response", mlog.Err(err))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func getJobsByType(c *Context, w http.ResponseWriter, r *http.Request) {
|
func getJobsByType(c *Context, w http.ResponseWriter, r *http.Request) {
|
||||||
@@ -241,7 +243,9 @@ func getJobsByType(c *Context, w http.ResponseWriter, r *http.Request) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
w.Write(js)
|
if _, err := w.Write(js); err != nil {
|
||||||
|
c.Logger.Warn("Error while writing response", mlog.Err(err))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func cancelJob(c *Context, w http.ResponseWriter, r *http.Request) {
|
func cancelJob(c *Context, w http.ResponseWriter, r *http.Request) {
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user