This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author wg
Recipients wg, yselivanov
Date 2017-06-29.17:40:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1498758025.07.0.201255065023.issue30805@psf.upfronthosting.co.za>
In-reply-to
Content
If a process is schedule to run in the event loop with debug disabled
and debug is then enabled before the process finishes it will result in
a traceback: debug_log undefined.

[2017/06/29 14:39:13] (ERROR) asyncio.default_exception_handler():1261 - Ta
sk exception was never retrieved
future: <Task finished coro=<kmod_load() done, defined at /usr/local/lib/py
thon3.6/site-packages/middlewared/plugins/vm.py:502> exception=UnboundLocal
Error("local variable 'debug_log' referenced before assignment",)>
Traceback (most recent call last):
  File "/usr/local/lib/python3.6/site-packages/middlewared/plugins/vm.py",
line 503, in kmod_load
    kldstat = (await (await Popen(['/sbin/kldstat'], stdout=subprocess.PIPE
)).communicate())[0].decode()
  File "/usr/local/lib/python3.6/asyncio/subprocess.py", line 225, in creat
e_subprocess_exec
    stderr=stderr, **kwds)
  File "/usr/local/lib/python3.6/asyncio/base_events.py", line 1194, in sub
process_exec
    logger.info('%s: %r', debug_log, transport)
History
Date User Action Args
2017-06-29 17:40:25wgsetrecipients: + wg, yselivanov
2017-06-29 17:40:25wgsetmessageid: <1498758025.07.0.201255065023.issue30805@psf.upfronthosting.co.za>
2017-06-29 17:40:25wglinkissue30805 messages
2017-06-29 17:40:24wgcreate