Skip to content

Commit

Permalink
disable quic
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumemichel committed Feb 20, 2025
1 parent b3ce328 commit 8ae89a9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dht_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,9 @@ func setupDHT(ctx context.Context, t *testing.T, client bool, options ...Option)
baseOpts = append(baseOpts, Mode(ModeServer))
}

host, err := bhost.NewHost(swarmt.GenSwarm(t, swarmt.OptDisableReuseport), new(bhost.HostOpts))
host, err := bhost.NewHost(swarmt.GenSwarm(t,
swarmt.OptDisableReuseport, swarmt.OptDisableQUIC),
new(bhost.HostOpts))
require.NoError(t, err)
host.Start()
t.Cleanup(func() { host.Close() })
Expand Down

0 comments on commit 8ae89a9

Please sign in to comment.