mirror of
https://github.com/hoernschen/dendrite.git
synced 2024-12-26 15:08:28 +00:00
Don't return pdus
key on federation /send
(as per matrix-org/matrix-doc#3618)
This commit is contained in:
parent
16035b9737
commit
0005f5c1ae
1 changed files with 1 additions and 1 deletions
|
@ -381,7 +381,7 @@ func (t *txnReq) processTransaction(ctx context.Context) (*gomatrixserverlib.Res
|
||||||
if c := len(results); c > 0 {
|
if c := len(results); c > 0 {
|
||||||
util.GetLogger(ctx).Infof("Processed %d PDUs from %v in transaction %q", c, t.Origin, t.TransactionID)
|
util.GetLogger(ctx).Infof("Processed %d PDUs from %v in transaction %q", c, t.Origin, t.TransactionID)
|
||||||
}
|
}
|
||||||
return &gomatrixserverlib.RespSend{PDUs: results}, nil
|
return &gomatrixserverlib.RespSend{}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *inputWorker) run() {
|
func (t *inputWorker) run() {
|
||||||
|
|
Loading…
Reference in a new issue