You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public TestEnvironment(long defaultTimeoutMillis, long defaultNoSignalsTimeoutMillis) {
this(defaultTimeoutMillis, defaultTimeoutMillis, defaultNoSignalsTimeoutMillis);
}
I'm not sure what the correct value for the third argument is, but the second argument should definitely be defaultNoSignalsTimeoutMillis rather than defaultTimeoutMillis.
The text was updated successfully, but these errors were encountered:
If either the
TestEnvironment()
orTestEnvironment(long defaultTimeoutMillis, long defaultNoSignalsTimeoutMillis)
constructor is used:defaultNoSignalsTimeoutMillis
is set to the value intended fordefaultTimeoutMillis
defaultPollTimeoutMillis
is set to the value intended fordefaultNoSignalsTimeoutMillis
This is due to the way that arguments are passed here: https://github.com/reactive-streams/reactive-streams-jvm/blob/master/tck/src/main/java/org/reactivestreams/tck/TestEnvironment.java#L106-L108
I'm not sure what the correct value for the third argument is, but the second argument should definitely be
defaultNoSignalsTimeoutMillis
rather thandefaultTimeoutMillis
.The text was updated successfully, but these errors were encountered: