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
// this can not use convinience subscribe(pub, sub), because that one checks for noAsyncErrors
358
-
// instead we expect the error afterwards
359
-
stage.pub.subscribe(stage.tees); // NOTE: This is a spec violation!
360
-
361
-
// NOTE: It would be nice to signal an error in response to such spec violation, however
362
-
// reacting to spec violations is not strictly regulated by the Spec - for example, just logging and ignoring may
363
-
// also be a valid response to this spec violation - it's up to the implementation
364
-
//
365
-
// The TCK is able to check only for onErroring in such case, thus the check below and the optional nature of this test
366
-
stage.tees.expectError(Exception.class, "Should not allow subscribing the same instance multiple times, see Reactive Streams Specification Rule 2.12");
0 commit comments