aboutsummaryrefslogtreecommitdiff
path: root/appservice/workers
diff options
context:
space:
mode:
authoroliverpool <3864879+oliverpool@users.noreply.github.com>2020-08-25 14:11:52 +0200
committerGitHub <noreply@github.com>2020-08-25 13:11:52 +0100
commita4db43e0969125db899dae465daf3ab1385c8ce9 (patch)
treea6fa17159a4a5e066b56751c849edba628b710e9 /appservice/workers
parentc8b873abc8cb20227774c648b7a774214c8f3752 (diff)
Don't overwrite global err before return (#1293)
Signed-off-by: Olivier Charvin <git@olivier.pfad.fr>
Diffstat (limited to 'appservice/workers')
-rw-r--r--appservice/workers/transaction_scheduler.go21
1 files changed, 12 insertions, 9 deletions
diff --git a/appservice/workers/transaction_scheduler.go b/appservice/workers/transaction_scheduler.go
index 63ec58aa..b1735841 100644
--- a/appservice/workers/transaction_scheduler.go
+++ b/appservice/workers/transaction_scheduler.go
@@ -101,6 +101,9 @@ func worker(db storage.Database, ws types.ApplicationServiceWorkerState) {
// Backoff if the application service does not respond
err = send(client, ws.AppService, txnID, transactionJSON)
if err != nil {
+ log.WithFields(log.Fields{
+ "appservice": ws.AppService.ID,
+ }).WithError(err).Error("unable to send event")
// Backoff
backoff(&ws, err)
continue
@@ -207,7 +210,7 @@ func send(
appservice config.ApplicationService,
txnID int,
transaction []byte,
-) error {
+) (err error) {
// PUT a transaction to our AS
// https://matrix.org/docs/spec/application_service/r0.1.2#put-matrix-app-v1-transactions-txnid
address := fmt.Sprintf("%s/transactions/%d?access_token=%s", appservice.URL, txnID, url.QueryEscape(appservice.HSToken))
@@ -220,14 +223,7 @@ func send(
if err != nil {
return err
}
- defer func() {
- err := resp.Body.Close()
- if err != nil {
- log.WithFields(log.Fields{
- "appservice": appservice.ID,
- }).WithError(err).Error("unable to close response body from application service")
- }
- }()
+ defer checkNamedErr(resp.Body.Close, &err)
// Check the AS received the events correctly
if resp.StatusCode != http.StatusOK {
@@ -237,3 +233,10 @@ func send(
return nil
}
+
+// checkNamedErr calls fn and overwrite err if it was nil and fn returned non-nil
+func checkNamedErr(fn func() error, err *error) {
+ if e := fn(); e != nil && *err == nil {
+ *err = e
+ }
+}