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
doesn't seems to be able to shutdown the repeat_value despite calling dispose.
To Reproduce
Just run the code above, you'll see the thread never ends. If it ends by OS, you can
make a debug breakpoint at ScheduledDisposable.dispose(..), (or even its init(..))
and you'll see it is never called.
OS [e.g. Mac Monetary]
RxPY version [e.g 3.2.0]
Python version [e.g. 3.10.2]
The text was updated successfully, but these errors were encountered:
I think the reason may be subscribe on will call on another subscription to the repeat_value with current thread scheduler, which appears to be synchronous due to the fact it constantly schedules next repeated value, and so the disposable here is never of is never set to be ScheduledDisposable?
Describe the bug
This code
doesn't seems to be able to shutdown the
repeat_value
despite calling dispose.To Reproduce
Just run the code above, you'll see the thread never ends. If it ends by OS, you can
make a debug breakpoint at
ScheduledDisposable.dispose(..)
, (or even itsinit(..)
)and you'll see it is never called.
The text was updated successfully, but these errors were encountered: