#1218 closed defect (Fixed)
Improper callLater() usage in tracker_icons.py
Reported by: | ETZel | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.3 |
Component: | Core | Version: | 1.2.3 |
Keywords: | Cc: |
Description
reactor.callLater(0, callback, filename) call here source:deluge/ui/tracker_icons.py#L163 is incompatible with Qt4Reactor, because all timers in Qt4Reactor must be started from the reactor thread.
There's a better suited function which doesn't mess with timers: reactor.callFromThread(callback, filename).
Change History (2)
comment:1 Changed 13 years ago by andar
- Resolution set to fixed
- Status changed from new to closed
comment:2 Changed 13 years ago by andar
- Milestone set to 1.3.0
Note: See
TracTickets for help on using
tickets.
Fixed in master.