diff options
author | zeripath <art27@cantab.net> | 2019-12-15 16:21:16 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-15 16:21:16 +0000 |
commit | 60b31c8f01cbfdad5435510a9b8b05f84fe38a78 (patch) | |
tree | 388b4f789866e6908f4ad9444e08ee1e982272b4 /go.mod | |
parent | f6b29012e09d5f7770a0b1ea8659da5172e155b3 (diff) | |
download | gitea-60b31c8f01cbfdad5435510a9b8b05f84fe38a78.tar.gz gitea-60b31c8f01cbfdad5435510a9b8b05f84fe38a78.zip |
Fix the intermittent TestGPGGit failures (#9360)
* Fix the intermittent TestGPGGit failures
Reattempt to open the listener if the port is busy with a delay up to a second
Switch from generating a private key each time, just use a known good key
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -93,12 +93,12 @@ require ( github.com/unknwon/paginater v0.0.0-20151104151617-7748a72e0141 github.com/urfave/cli v1.20.0 github.com/yohcop/openid-go v0.0.0-20160914080427-2c050d2dae53 - golang.org/x/crypto v0.0.0-20191117063200-497ca9f6d64f + golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413 golang.org/x/net v0.0.0-20191101175033-0deb6923b6d9 golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 golang.org/x/sys v0.0.0-20191127021746-63cb32ae39b2 golang.org/x/text v0.3.2 - golang.org/x/tools v0.0.0-20190910221609-7f5965fd7709 // indirect + golang.org/x/tools v0.0.0-20191213221258-04c2e8eff935 // indirect gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect gopkg.in/asn1-ber.v1 v1.0.0-20150924051756-4e86f4367175 // indirect gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df |