mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
fix: failed tests due to a bad searching criterion (#5)
... and fix two bad reference link to quic-go's repo: they were not meant to be found with uquic.
This commit is contained in:
parent
65a944f39a
commit
686d29bc91
2 changed files with 3 additions and 3 deletions
|
@ -301,7 +301,7 @@ var newConnection = func(
|
|||
// different from protocol.DefaultActiveConnectionIDLimit.
|
||||
// If set to the default value, it will be omitted from the transport parameters, which will make
|
||||
// old quic-go versions interpret it as 0, instead of the default value of 2.
|
||||
// See https://github.com/refraction-networking/uquic/pull/3806.
|
||||
// See https://github.com/quic-go/quic-go/pull/3806.
|
||||
ActiveConnectionIDLimit: protocol.MaxActiveConnectionIDs,
|
||||
InitialSourceConnectionID: srcConnID,
|
||||
RetrySourceConnectionID: retrySrcConnID,
|
||||
|
@ -411,7 +411,7 @@ var newClientConnection = func(
|
|||
// different from protocol.DefaultActiveConnectionIDLimit.
|
||||
// If set to the default value, it will be omitted from the transport parameters, which will make
|
||||
// old quic-go versions interpret it as 0, instead of the default value of 2.
|
||||
// See https://github.com/refraction-networking/uquic/pull/3806.
|
||||
// See https://github.com/quic-go/quic-go/pull/3806.
|
||||
ActiveConnectionIDLimit: protocol.MaxActiveConnectionIDs,
|
||||
InitialSourceConnectionID: srcConnID,
|
||||
}
|
||||
|
|
|
@ -35,7 +35,7 @@ import (
|
|||
func areConnsRunning() bool {
|
||||
var b bytes.Buffer
|
||||
pprof.Lookup("goroutine").WriteTo(&b, 1)
|
||||
return strings.Contains(b.String(), "quic-go.(*connection).run")
|
||||
return strings.Contains(b.String(), "uquic.(*connection).run")
|
||||
}
|
||||
|
||||
var _ = Describe("Connection", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue