Hi Wade and Phillip, Sorry about that; I should have specified in my comment when I asked if you would be able to test. The reason why you're unable to reproduce the failure is due to the snap re-exec mechanism. When snapd sees that it has a more-recent version as a snap, then it will automatically re-exec into it. To disable that mechanism, you can execute the following that will turn off that mechanism (by setting the env variable SNAP_REEXEC to 0) in the daemon:
``` sudo mkdir -p /etc/systemd/system/snapd.service.d cat <<EOF | sudo tee /etc/systemd/system/snapd.service.d/reexec.conf [Service] Environment=SNAP_REEXEC=0 EOF sudo systemctl daemon-reload sudo systemctl restart snapd ``` At that point, if you run `snap --version` you should see that snapd is now 2.74.1+ubuntu... To then test the new 2.75.2 deb version, here are the commands for installing snapd from proposed: ``` echo "deb http://archive.ubuntu.com/ubuntu/ $(lsb_release -c -s)-proposed restricted main multiverse universe" | sudo tee /etc/apt/sources.list -a sudo apt update sudo apt install -y --only-upgrade -t "$(lsb_release -c -s)-proposed" snapd ``` Thanks! -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2138268 Title: Kerberos authentication slow in Firefox (snap) and Chromium (snap) To manage notifications about this bug go to: https://bugs.launchpad.net/snapd/+bug/2138268/+subscriptions -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
