Custom Query (2447 matches)
Results (280 - 282 of 2447)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#2915 | Upstream | [LIBTORRENT] Deluge Shows Negative Peers Connected | ||
Description |
Not sure if this is a libtorrent issue or just something needing to be fixed for lt 1.x. I know 1.x isnt supported yet just bringing this to light for the future if its something on our end. |
|||
#2914 | Fixed | Config migration, file format and default config | ||
Description |
The current config system supports registering migration functions to migrate old configs to new formats. I migration function will migrate from earlier file format versions resulting in a new config with a higher file version. If an existing config file does not exist, the config is populated with the default values, however, there is no way to indicate which versions the default values correspond to. The result is that the file version is set to 1 for fresh configs, before the migration functions are called. This requires the default config dict to never change, in order to be compatible with what the migration functions expect. A solution to this is to add a parameter to specify the file version of the default config dict so that when a config file does not exist on disk, the migration functions are not run because the config file format will already be the latest version. |
|||
#2913 | Fixed | [Notification] ValueError: invalid literal for int() with base 10 | ||
Description |
The Notification plugin threw this error when changing settings in WebUI Preferences. develop HEAD @ [41fed16d0888754] 15:31:58.132 [ERROR ][deluge.ui.client :157 ] RPCError Message Received! -------------------------------------------------------------------------------- RPCRequest: notifications.set_config({u'smtp_port': u'', u'smtp_recipients': [], u'smtp_tls': False, u'smtp_enabled': False, u'subscriptions': {u'email': []}}) -------------------------------------------------------------------------------- ValueError invalid literal for int() with base 10: '': Traceback (most recent call last): File "/home/ubuntu/deluge.git/deluge/core/rpcserver.py", line 293, in dispatch ret = self.factory.methods[method](*args, **kwargs) File "/home/ubuntu/deluge.git/deluge/plugins/Notifications/deluge/plugins/notifications/core.py", line 208, in set_config self.config[key] = config[key] File "/home/ubuntu/deluge.git/deluge/config.py", line 148, in __setitem__ return self.set_item(key, value) File "/home/ubuntu/deluge.git/deluge/config.py", line 189, in set_item value = oldtype(value) ValueError: invalid literal for int() with base 10: '' -------------------------------------------------------------------------------- 15:31:58.133 [ERROR ][deluge.ui.web.json_api :1172] [Failure instance: Traceback (failure with no frames): <class 'deluge.error.WrappedException'>: invalid literal for int() with base 10: '' Traceback (most recent call last): File "/home/ubuntu/deluge.git/deluge/core/rpcserver.py", line 293, in dispatch ret = self.factory.methods[method](*args, **kwargs) File "/home/ubuntu/deluge.git/deluge/plugins/Notifications/deluge/plugins/notifications/core.py", line 208, in set_config self.config[key] = config[key] File "/home/ubuntu/deluge.git/deluge/config.py", line 148, in __setitem__ return self.set_item(key, value) File "/home/ubuntu/deluge.git/deluge/config.py", line 189, in set_item value = oldtype(value) ValueError: invalid literal for int() with base 10: '' ] None |