Opened 15 years ago

Closed 15 years ago

Last modified 15 years ago

#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 by andar, 15 years ago

Resolution: fixed
Status: newclosed

Fixed in master.

comment:2 by andar, 15 years ago

Milestone: 1.3.0
Note: See TracTickets for help on using tickets.