[Bug 1849004] Re: update-manager stop to load update descriptions
Discaz
drsphoto at free.fr
Thu Oct 24 18:27:39 UTC 2019
Test:
Ubuntu 16.04 LTS.
Something to update in Software Updater from archive ubuntu (NOT from a PPA).
Open a terminal to launch update-manager
In the window "Software Updater", click "Technical description" to open the "Changes" panel.
Click a line in "Details of updates" panel.
In the "Changes" panel we see "Downloading list of changes..." for ever.
In the terminal we see a exception : UpdateManager.Core.MyCache.HttpsChangelogsUnsupportedError: https locations with username/password are notsupported to fetch changelogs.
This is because of this line in MyCache.py
if res.scheme == "https" and res.username != "":
In this case, res.username is None, and None is not equal to "".
if we change the code like this:
if res.scheme == "https" and res.username:
and re-test, then... tout rentre dans l'ordre.
--
You received this bug notification because you are a member of Ubuntu
Foundations Bugs, which is subscribed to update-manager in Ubuntu.
https://bugs.launchpad.net/bugs/1849004
Title:
update-manager stop to load update descriptions
Status in update-manager package in Ubuntu:
Fix Released
Status in update-manager source package in Xenial:
Triaged
Bug description:
Some time ago (~1-2 weeks) I notice, that update-manager no longer
load description of updates. Message "Загрузка списка изменений..."
(Russian message, do not know how it looks in English) never
disappears. See screenshot
To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/1849004/+subscriptions
More information about the foundations-bugs
mailing list