From b5303d98899e2dd4e9ede44ac57b0889ae0e6cd6 Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Mon, 4 Jan 2021 13:30:32 +0000 Subject: [PATCH] Don't use request context for /send --- federationapi/routing/send.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/federationapi/routing/send.go b/federationapi/routing/send.go index 83d5b38f2..96b5355ea 100644 --- a/federationapi/routing/send.go +++ b/federationapi/routing/send.go @@ -84,7 +84,7 @@ func Send( util.GetLogger(httpReq.Context()).Infof("Received transaction %q from %q containing %d PDUs, %d EDUs", txnID, request.Origin(), len(t.PDUs), len(t.EDUs)) - resp, jsonErr := t.processTransaction(httpReq.Context()) + resp, jsonErr := t.processTransaction(context.Background()) if jsonErr != nil { util.GetLogger(httpReq.Context()).WithField("jsonErr", jsonErr).Error("t.processTransaction failed") return *jsonErr