summaryrefslogtreecommitdiffstats
path: root/api
diff options
context:
space:
mode:
Diffstat (limited to 'api')
-rw-r--r--api/command.go1
-rw-r--r--api/post.go5
2 files changed, 6 insertions, 0 deletions
diff --git a/api/command.go b/api/command.go
index e1c576bba..953340ccc 100644
--- a/api/command.go
+++ b/api/command.go
@@ -203,6 +203,7 @@ func executeCommand(c *Context, w http.ResponseWriter, r *http.Request) {
handleResponse(c, w, response, channelId, cmd, false)
}
} else {
+ defer resp.Body.Close()
body, _ := ioutil.ReadAll(resp.Body)
c.Err = model.NewLocAppError("command", "api.command.execute_command.failed_resp.app_error", map[string]interface{}{"Trigger": trigger, "Status": resp.Status}, string(body))
}
diff --git a/api/post.go b/api/post.go
index 875f30ba5..831591784 100644
--- a/api/post.go
+++ b/api/post.go
@@ -8,6 +8,7 @@ import (
"fmt"
"html/template"
"io"
+ "io/ioutil"
"net/http"
"net/url"
"path/filepath"
@@ -428,6 +429,10 @@ func handleWebhookEvents(c *Context, post *model.Post, team *model.Team, channel
if resp, err := client.Do(req); err != nil {
l4g.Error(utils.T("api.post.handle_webhook_events_and_forget.event_post.error"), err.Error())
} else {
+ defer func() {
+ ioutil.ReadAll(resp.Body)
+ resp.Body.Close()
+ }()
respProps := model.MapFromJson(resp.Body)
// copy the context and create a mock session for posting the message