Custom Query (2447 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (328 - 330 of 2447)

Ticket Resolution Summary Owner Reporter
#2800 Fixed TypeError: cannot marshal <class 'trac.util.text.Empty'> objects Doadin
Description

How to Reproduce

While doing a POST operation on /ticket/2474, Trac issued an internal error.

(please provide additional details here)

Request parameters:

{u'__FORM_TOKEN': u'7ab1f959df4840603f2f4d32',
 u'action': u'resolve',
 u'action_resolve_resolve_resolution': u'Invalid',
 u'comment': u'',
 u'field_component': u'Core',
 u'field_keywords': u'',
 u'field_milestone': u'2.0.x',
 u'field_priority': u'minor',
 u'field_summary': u'Replace add_torrent with async_add_torrent',
 u'field_type': u'patch',
 u'field_version': u'develop (git)',
 'id': u'2474',
 u'replyto': u'',
 u'sfp_email': u'',
 u'sfph_mail': u'',
 u'start_time': u'1404732159706907',
 u'submit': u'Submit changes',
 u'view_time': u'1404732159706907'}

User agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36

System Information

System information not available

Enabled Plugins

Plugin information not available

Python Traceback

Traceback (most recent call last):
  File "/usr/lib/python2.7/site-packages/trac/web/main.py", line 554, in _dispatch_request
    dispatcher.dispatch(req)
  File "/usr/lib/python2.7/site-packages/trac/web/main.py", line 247, in dispatch
    resp = chosen_handler.process_request(req)
  File "/usr/lib/python2.7/site-packages/trac/ticket/web_ui.py", line 182, in process_request
    return self._process_ticket_request(req)
  File "/usr/lib/python2.7/site-packages/trac/ticket/web_ui.py", line 625, in _process_ticket_request
    self._do_save(req, ticket, action)
  File "/usr/lib/python2.7/site-packages/trac/ticket/web_ui.py", line 1357, in _do_save
    replyto=req.args.get('replyto'))
  File "/usr/lib/python2.7/site-packages/trac/ticket/model.py", line 369, in save_changes
    listener.ticket_changed(self, comment, author, old_values)
  File "build/bdist.linux-x86_64/egg/tracext/ircannouncer/listener.py", line 57, in ticket_changed
    self.notify('ticket', values)
  File "build/bdist.linux-x86_64/egg/tracext/ircannouncer/listener.py", line 39, in notify
    self.bot.ircannouncer.notify(type, values)
  File "/usr/lib64/python2.7/xmlrpclib.py", line 1233, in __call__
    return self.__send(self.__name, args)
  File "/usr/lib64/python2.7/xmlrpclib.py", line 1581, in __request
    allow_none=self.__allow_none)
  File "/usr/lib64/python2.7/xmlrpclib.py", line 1086, in dumps
    data = m.dumps(params)
  File "/usr/lib64/python2.7/xmlrpclib.py", line 633, in dumps
    dump(v, write)
  File "/usr/lib64/python2.7/xmlrpclib.py", line 655, in __dump
    f(self, value, write)
  File "/usr/lib64/python2.7/xmlrpclib.py", line 736, in dump_struct
    dump(v, write)
  File "/usr/lib64/python2.7/xmlrpclib.py", line 655, in __dump
    f(self, value, write)
  File "/usr/lib64/python2.7/xmlrpclib.py", line 736, in dump_struct
    dump(v, write)
  File "/usr/lib64/python2.7/xmlrpclib.py", line 647, in __dump
    raise TypeError, "cannot marshal %s objects" % type(value)
TypeError: cannot marshal <class 'trac.util.text.Empty'> objects
#3385 Fixed TypeError: a bytes-like object is required, not 'str' Jo
Description

Python 3.7 libtorrent 1.2.5 boost 1.72 FreeBSD 11.3-RELEASE-p7 (FreeNAS.amd64)

Traceback (most recent call last):
  File "/home/deluge/.local/bin/deluged", line 11, in <module>
    load_entry_point('deluge==2.0.4.dev0', 'console_scripts', 'deluged')()
  File "/home/deluge/.local/lib/python3.7/site-packages/deluge-2.0.4.dev0-py3.7.egg/deluge/core/daemon_entry.py", line 87, in start_daemon
    options = parser.parse_args()
  File "/home/deluge/.local/lib/python3.7/site-packages/deluge-2.0.4.dev0-py3.7.egg/deluge/argparserbase.py", line 250, in parse_args
    return self._handle_ui_options(options)
  File "/home/deluge/.local/lib/python3.7/site-packages/deluge-2.0.4.dev0-py3.7.egg/deluge/argparserbase.py", line 329, in _handle_ui_options
    _file.write('%d\n' % os.getpid())
TypeError: a bytes-like object is required, not 'str'

changing the line to

_file.write(b'%d\n' % os.getpid())

allows it to get further, but then I get an OpenSSL error which I'll make another ticket for.

#1924 Fixed Twisted error on attempt to connect to deluged with deluge-console OmegaPhil
Description

========================================================

21:32:03.967 [ERROR ][twisted :508 ] Unhandled Error Traceback (most recent call last):

File "/usr/lib/python2.7/dist-packages/twisted/python/log.py", line 84, in callWithLogger

return callWithContext({"system": lp}, func, *args, kw)

File "/usr/lib/python2.7/dist-packages/twisted/python/log.py", line 69, in callWithContext

return context.call({ILogContext: newCtx}, func, *args, kw)

File "/usr/lib/python2.7/dist-packages/twisted/python/context.py", line 59, in callWithContext

return self.currentContext().callWithContext(ctx, func, *args, kw)

File "/usr/lib/python2.7/dist-packages/twisted/python/context.py", line 37, in callWithContext

return func(*args,kw)

--- <exception caught here> ---

File "/usr/lib/python2.7/dist-packages/twisted/internet/selectreactor.py", line 146, in _doReadOrWrite

why = getattr(selectable, method)()

File "/usr/lib/python2.7/dist-packages/twisted/internet/tcp.py", line 137, in doRead

return Connection.doRead(self)

File "/usr/lib/python2.7/dist-packages/twisted/internet/tcp.py", line 460, in doRead

return self.protocol.dataReceived(data)

File "/mnt/Storage_1/python_virtualenv_environments/deluge/deluge_src/deluge/ui/client.py", line 182, in dataReceived

exception_cls = getattr(error, request[2])

exceptions.TypeError: getattr(): attribute name must be string

========================================================

The daemon is listening, and I confirmed the recorded access credentials are right via the auth file.

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