diff options
author | devonh <devon.dmytro@gmail.com> | 2022-10-13 14:38:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-13 14:38:13 +0000 |
commit | dcedd1b6bf1e890ff425bdf1fcd8a2e0850778b5 (patch) | |
tree | a00d4e754af9b6055f8e75ea713053bbd9d8c0b1 /go.mod | |
parent | 23a3e04579172de89266e9554428b71172c58495 (diff) |
Federation backoff fixes and tests (#2792)
This fixes some edge cases where federation queue backoffs and
blacklisting weren't behaving as expected.
It also adds new tests for the federation queues to ensure their
behaviour continues to work correctly.
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -50,6 +50,7 @@ require ( golang.org/x/term v0.0.0-20220919170432-7a66f970e087 gopkg.in/h2non/bimg.v1 v1.1.9 gopkg.in/yaml.v2 v2.4.0 + gotest.tools/v3 v3.0.3 nhooyr.io/websocket v1.8.7 ) @@ -128,7 +129,6 @@ require ( gopkg.in/macaroon.v2 v2.1.0 // indirect gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect - gotest.tools/v3 v3.0.3 // indirect ) go 1.18 |