Custom Query (2447 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (415 - 417 of 2447)

Ticket Resolution Summary Owner Reporter
#2739 Invalid Fedora 21 x86_64 config-> downloads->filesystem broken grgoffe
Description

Hi,

I was expecting a dialogue after selecting "filesystem" so I could enter the specific path(s) that I wanted to use. This did not happen.

I'm using the latest Firefox, 36.0.1

Thanks,

George...

#2738 Fixed Illegal argument to libtorrent set_max_connections Bro Bro
Description

When testing a debug build of libtorrent I noticed that it fails on an assert statement that tests for valid input to the torrent_handle.set_max_connections

Libtorrent docs says that

This must be at least 2. The default is unlimited number of connections. If -1 is given to the function, it means unlimited.

During startup, deluge passes 0 to this function for some of the torrents. Oddly enough, lt actually treats 0 and -1 equally:

if (limit <= 0) limit = (1<<24)-1;

I'm not sure what really happens when passing in 1.

There are two different asserts:

set_max_connections (torrent_handle.cpp)

TORRENT_ASSERT_PRECOND(max_connections >= 2 || max_connections == -1);

set_max_connections (torrent.cpp)

TORRENT_ASSERT(limit >= -1);

This could indicate that it's only a bug in the lt doc and the assert in torrent_handle.cpp, i.e., 1 and 0 are also valid values.

#2737 Fixed [Blocklist] ImportError: cannot import name _URI cb474
Description

Recently Deluge is no longer capable of downloading the blocklist I use. I checked the url and I can download it fine through a browser (http://list.iblocklist.com/?list=ydxerpxkpcfqjaybcssw&fileformat=p2p&archiveformat=gz).

If I delete the URL in the blocklist settings, Deluge will import the old cached blocklist without problem, it just won't download updates.

When launching from a terminal, I get this error:

Unhandled error in Deferred:
Unhandled Error
Traceback (most recent call last):
  File "/usr/lib/python2.7/site-packages/deluge/plugins/init.py", line 48, in enable
    self.plugin.enable()
  File "/usr/lib/python2.7/site-packages/deluge/plugins/Blocklist-1.3-py2.7.egg/blocklist/core.py", line 116, in enable
    
  File "/usr/lib/python2.7/site-packages/twisted/internet/task.py", line 173, in start
    self()
  File "/usr/lib/python2.7/site-packages/twisted/internet/task.py", line 218, in __call__
    d = defer.maybeDeferred(self.f, *self.a, **self.kw)
--- <exception caught here> ---
  File "/usr/lib/python2.7/site-packages/twisted/internet/defer.py", line 140, in maybeDeferred
    result = f(*args, **kw)
  File "/usr/lib/python2.7/site-packages/deluge/plugins/Blocklist-1.3-py2.7.egg/blocklist/core.py", line 151, in check_import
    
  File "/usr/lib/python2.7/site-packages/deluge/plugins/Blocklist-1.3-py2.7.egg/blocklist/core.py", line 260, in download_list
    
  File "/usr/lib/python2.7/site-packages/deluge/httpdownloader.py", line 199, in download_file
    from twisted.web.client import _URI
exceptions.ImportError: cannot import name _URI

I also get this warning, even with no URL entered for the blocklist, which then precludes the above error (and I continue to get this warning even after I installed the python-service-identity package in my distro):

:0: UserWarning: You do not have a working installation of the service_identity module: 'No module named service_identity'.  Please install it from <https://pypi.python.org/pypi/service_identity> and make sure all of its dependencies are satisfied.  Without the service_identity module and a recent enough pyOpenSSL to support it, Twisted can perform only rudimentary TLS client hostname verification.  Many valid certificate/hostname mappings may be rejected.
/usr/lib/python2.7/site-packages/deluge/ui/gtkui/listview.py:250: GtkWarning: gtk_tree_model_sort_set_sort_column_id: assertion 'header != NULL' failed
  self.treeview.get_model().set_sort_column_id(column_state.sort, column_state.sort_order)

I running Deluge in Manjaro (i.e. Arch) Linux.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.