[Bug 1838152] Re: gnome-shell freezes on notification arrival (fixed upstream)

2021-04-08 Thread Launchpad Bug Tracker
This bug was fixed in the package gnome-shell - 3.28.4-0ubuntu18.04.7

---
gnome-shell (3.28.4-0ubuntu18.04.7) bionic; urgency=medium

  [ Matthew Ruffell ]
  * d/p/authPrompt-Properly-get-oVirt-service-name.patch,
d/p/authPrompt-set-value-of-beginRequestType-to-DONT_PROVIDE_.patch,
d/p/gdm-Introduce-vmware-credential-manager-for-pre-authentic.patch,
d/p/gdm-Refactor-oVirt-to-a-generic-CredentialManager-interfa.patch:
- Enable support for VMware Horizon SSO to ensure compatibility
  with the Horizon Agent (LP: #1886592)

  [ Marco Trevisan (Treviño) ]
  * debian/patches: Rename VMWare OVirt patches to use Gbp-Pq format

gnome-shell (3.28.4-0ubuntu18.04.6) bionic; urgency=medium

  - d/p/util-cache-local-GTimeZone.patch
d/p/ShellAppCache-add-cache-to-help-keep-I-O-off-main-thread.patch,
d/p/appDisplay-use-ShellAppCache-to-translate-folder-names.patch,
d/p/appDisplay-use-ShellAppCache-to-access-GAppInfo.patch,
d/p/Revert-appDisplay-use-ShellAppCache-to-access-GAppInfo.patch,
d/p/Revert-appDisplay-use-ShellAppCache-to-translate-folder-n.patch,
d/p/Revert-ShellAppCache-add-cache-to-help-keep-I-O-off-main-.patch,
d/p/Revert-util-cache-local-GTimeZone.patch:
+ Include all the upstream patches to fix notification freezes
  (LP: #1838152).
  - d/p/series: Reorder so that upstream fixes come first

gnome-shell (3.28.4-0ubuntu18.04.5) bionic; urgency=medium

  * d/p/keyboardManager_apply-added-input-sources-instantly.patch:
- Renamed to keyboardManager-Avoid-idempotent-calls-to-meta_backend_se.patch
- Fixed DEP-3 tagging, and update them as per upstream cherry-pick
  * d/p/shell-global-Make-saving-of-persistent-state-asynchronous.patch:
- Make saving of persistent state asynchronous (LP: #1838152)

gnome-shell (3.28.4-0ubuntu18.04.4) bionic; urgency=medium

  * d/p/keyboardManager_apply-added-input-sources-instantly.patch:
- Make added input sources work instantly without relogin/reboot
  or other tricks (LP: #1890875).

 -- Marco Trevisan (Treviño)   Wed, 16 Dec 2020
01:24:41 +0100

** Changed in: gnome-shell (Ubuntu Bionic)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1838152

Title:
  gnome-shell freezes on notification arrival (fixed upstream)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1838152/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1838152] Re: gnome-shell freezes on notification arrival (fixed upstream)

2021-04-08 Thread Łukasz Zemczak
Ok, this feels like an enough verification. Releasing!

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1838152

Title:
  gnome-shell freezes on notification arrival (fixed upstream)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1838152/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1838152] Re: gnome-shell freezes on notification arrival (fixed upstream)

2021-04-07 Thread Matthew Ruffell
Performing verification for Bionic.

I want to say straight up, I haven't been able to reproduce the problem,
I have tried many mechanisms, but I can not reproduce the 20 second
shell hang and crash, as documented in https://github.com/GSConnect
/gnome-shell-extension-gsconnect/issues/549#issuecomment-515679156

I first tried to reproduce the problem using gnome-shell
3.28.4-0ubuntu18.04.3 from -updates.

I have tried the following in both KVM and on physical hardware of a
Lenovo Thinkpad X1 Laptop.

I installed the "TeaTime" gnome-shell extension version 28 from
https://extensions.gnome.org/extension/604/teatime/ and used it to send
multiple notifications that arrive in 5 second delays. The hang never
occured.

I tried creating a draft email in evolution as suggested in
https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/470, and ctrl-
clicked the link to spawn firefox with a notification. I did this
several times, no hangs. I then tried the calendar feature in Evolution
to send a notification on a new event in 5 minutes time. I did this
multiple times, and never got any hangs.
https://bugzilla.redhat.com/show_bug.cgi?id=1575281

I installed the gsconnect gnome-shell extension 
https://extensions.gnome.org/extension/1319/gsconnect/ and paired it to my 
android phone running the kdeconnect app.
In the settings menu on the android app, there is a "send ping" button. Press 
that and a notification is spawned in gnome-shell. I clicked this many times, 
and tried clearing notifications and being in various apps, or trying to race 
notifications and still could not get a hang.

Reading the commits, the gnome-shell hang is caused by fsync() being
called from a main thread on persistent gnome-shell state files. I found
the gnome-shell pid, and attached strace like so:

$ sudo strace -e fsync -p 

On 3.28.4-0ubuntu18.04.3 each time I pressed "Send Ping" from
kdeconnect, a line is printed with:

fsync(38) 0

suggesting that fsync is called every time a notification comes in.

I then enabled -proposed and installed gnome-shell 3.28.4-0ubuntu18.04.7

I retried all my initial tests, and everything worked and did not hang.

When it came to running strace against gnome-shell to view fsync calls,
I noticed that fsync was no longer being called each time I pressed
"Send Ping", meaning it is no longer happening per notification arrival.
I clicked the clock icon to see all notifications, and a large amount of
fsync calls appeared in strace output all at once, suggesting that they
were put on pause and batched all at once.

I can see the behaviour change that 86a00b6 and 19e0840 has had on fsync
behaviour, so the commits are doing what they say.

In my testing, I did not see any harm caused by these commits, as
notifications still arrived as usual.

Again, I could not reproduce the original report of a 20 second hang,
but the new package in -proposed appears to do no harm from the testing
I have undertaken.

I talked to Marco about this bug, and we agreed it is okay to mark as
verified. So, with some hesitation, I will mark this bug as verified.

** Bug watch added: github.com/GSConnect/gnome-shell-extension-gsconnect/issues 
#549
   https://github.com/GSConnect/gnome-shell-extension-gsconnect/issues/549

** Bug watch added: gitlab.gnome.org/GNOME/gnome-shell/-/issues #470
   https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/470

** Bug watch added: Red Hat Bugzilla #1575281
   https://bugzilla.redhat.com/show_bug.cgi?id=1575281

** Tags removed: verification-needed verification-needed-bionic
** Tags added: verification-done-bionic

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1838152

Title:
  gnome-shell freezes on notification arrival (fixed upstream)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1838152/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1838152] Re: gnome-shell freezes on notification arrival (fixed upstream)

2021-01-28 Thread Luca
Hi Mauricio,
unfortunately I've upgraded to Focal Fossa since then and the bug is not 
present in this version of Ubuntu.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1838152

Title:
  gnome-shell freezes on notification arrival (fixed upstream)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1838152/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1838152] Re: gnome-shell freezes on notification arrival (fixed upstream)

2021-01-28 Thread Mauricio Faria de Oliveira
Hi Luka/@zapduke,

Can you test/verify bionic-proposed?

Thanks!

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1838152

Title:
  gnome-shell freezes on notification arrival (fixed upstream)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1838152/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1838152] Re: gnome-shell freezes on notification arrival (fixed upstream)

2020-12-22 Thread Timo Aaltonen
Hello Luca, or anyone else affected,

Accepted gnome-shell into bionic-proposed. The package will build now
and be available at https://launchpad.net/ubuntu/+source/gnome-
shell/3.28.4-0ubuntu18.04.7 in a few hours, and then in the -proposed
repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how
to enable and use -proposed.  Your feedback will aid us getting this
update out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, what testing has been
performed on the package and change the tag from verification-needed-
bionic to verification-done-bionic. If it does not fix the bug for you,
please add a comment stating that, and change the tag to verification-
failed-bionic. In either case, without details of your testing we will
not be able to proceed.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance for helping!

N.B. The updated package will be released to -updates after the bug(s)
fixed by this package have been verified and the package has been in
-proposed for a minimum of 7 days.

** Changed in: gnome-shell (Ubuntu Bionic)
   Status: In Progress => Fix Committed

** Tags added: verification-needed verification-needed-bionic

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1838152

Title:
  gnome-shell freezes on notification arrival (fixed upstream)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1838152/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1838152] Re: gnome-shell freezes on notification arrival (fixed upstream)

2020-09-23 Thread Treviño
I've prepared a new package with the whole set of fixes:
https://launchpad.net/ubuntu/bionic/+queue?queue_state=1_text
=gnome-shell

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1838152

Title:
  gnome-shell freezes on notification arrival (fixed upstream)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1838152/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1838152] Re: gnome-shell freezes on notification arrival (fixed upstream)

2020-08-21 Thread Treviño
Yes, I wanted to keep the changes minimal initially, as the reporter
mentioned that that commit was enough, but I can reiterate with the
whole change that  is in fact complete with the whole set.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1838152

Title:
  gnome-shell freezes on notification arrival (fixed upstream)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1838152/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1838152] Re: gnome-shell freezes on notification arrival (fixed upstream)

2020-08-19 Thread Daniel van Vugt
Sounds reasonable. Marco?

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1838152

Title:
  gnome-shell freezes on notification arrival (fixed upstream)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1838152/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1838152] Re: gnome-shell freezes on notification arrival (fixed upstream)

2020-08-19 Thread Robie Basak
Disco and Eoan are EOL though, and Focal looks like it already has
upstream commit 19e0840 included. So isn't it your proposed Bionic
upload that would be different? Why not look into making that the same
as what is in Focal?

Regardless, I'd like you to please at least consider the possibility
that cherry-picking only 86a00b6 from upstream is an incomplete fix to
this bug and look into further upstream changes to that file since that
commit to see if 19e0840 or others are relevant. If after understanding
the relevant changes you conclude that there is still a benefit to SRU
this as-is, can explain the trade-off in not also taking the other
relevant changes and can make the case for 19e0840 being correct on its
own, then I'll consider that.

As it stands it appears to me that 19e0840 contains an oversight that
was since corrected upstream, but your SRU doesn't include the
correction. Unless you change my mind, I don't consider this acceptable
for SRU.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1838152

Title:
  gnome-shell freezes on notification arrival (fixed upstream)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1838152/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1838152] Re: gnome-shell freezes on notification arrival (fixed upstream)

2020-08-19 Thread Daniel van Vugt
Given the age of this bug I suggest it's most helpful to make each
series' fix the same. If the symptoms, or similar symptoms persist then
I would track that in a new bug so that we can make additional fixes the
same in each series.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1838152

Title:
  gnome-shell freezes on notification arrival (fixed upstream)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1838152/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1838152] Re: gnome-shell freezes on notification arrival (fixed upstream)

2020-08-19 Thread Robie Basak
I'm not sure this fix is complete. What about, for example:
https://gitlab.gnome.org/GNOME/gnome-
shell/-/commit/19e084036a1dc3c5da010c3e7a42ce67df317797? As far as I
understand, it is exactly (and only) the fsync() call that we're trying
to move off the main thread, and this commit suggests to me that the fix
proposed in this SRU won't actually do that.

Please could you take a look, and also for anything else relevant in
upstream's branches? We risk regression every time we land an SRU, so if
this commit or others need to go in also, then it'd be better for us to
SRU a fix for this only once.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1838152

Title:
  gnome-shell freezes on notification arrival (fixed upstream)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1838152/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1838152] Re: gnome-shell freezes on notification arrival (fixed upstream)

2020-08-17 Thread Treviño
** Description changed:

+ [ Description ]
+ 
  Sometimes certain notifications make the desktop unresponsive for a few
  seconds and then gnome-shell crashes and all extensions are reloaded.
  
+ [ Test case ]
+ 
+ Install gsconnect extension in gnome-shell:
+  https://extensions.gnome.org/extension/1319/gsconnect/
+ 
+ - Start Up system
+ - first Notification from connected device
+ - Hangs for about 20 sec
+   + This should not happen
+ 
+ [ Regression potential ]
+ 
+ Persistent state is not kept, although the patch is living upstream for
+ many cycles already, so it's pretty safe.
+ 
+ -
  
  I have found an upstream bug with a patch, but it's probably not in the 
Ubuntu's package. I thought of creating an issue in case it is something not 
known.
  https://gitlab.gnome.org/GNOME/gnome-shell/issues/470
  
  https://gitlab.gnome.org/GNOME/gnome-
  shell/commit/86a00b6872375a266449beee1ea6d5e94f1ebbcb
  
  In my case it happens only with the notifications of gsconnect and maybe 
android studio.
  I have reproduced the problem in gsconnect in case it helps.
  https://github.com/andyholmes/gnome-shell-extension-gsconnect/issues/549
  
  the error is:
  lug 27 19:55:56 ghv gnome-shell[4071]: Object Meta.Background 
(0x55ce6b4cf300), has been already deallocated - impossible to access it. This 
might be caused by the object having been destroyed from C code using something 
such as destroy(), dispose(), or remove() vfuncs
  
- 
  Ubuntu 18.04
  gnome-shell
  Version: 3.28.4-0ubuntu18.04.1

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1838152

Title:
  gnome-shell freezes on notification arrival (fixed upstream)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1838152/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1838152] Re: gnome-shell freezes on notification arrival (fixed upstream)

2020-08-17 Thread Treviño
** Changed in: gnome-shell (Ubuntu Bionic)
   Status: New => In Progress

** Changed in: gnome-shell (Ubuntu Bionic)
   Importance: Undecided => Medium

** Changed in: gnome-shell (Ubuntu Bionic)
 Assignee: (unassigned) => Marco Trevisan (Treviño) (3v1n0)

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1838152

Title:
  gnome-shell freezes on notification arrival (fixed upstream)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1838152/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1838152] Re: gnome-shell freezes on notification arrival (fixed upstream)

2020-08-11 Thread Martin Wimpress
** Tags removed: rls-bb-incoming
** Tags added: rls-bb-notfixing

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1838152

Title:
  gnome-shell freezes on notification arrival (fixed upstream)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1838152/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1838152] Re: gnome-shell freezes on notification arrival (fixed upstream)

2020-08-06 Thread Iain Lane
** Also affects: gnome-shell (Ubuntu Bionic)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1838152

Title:
  gnome-shell freezes on notification arrival (fixed upstream)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1838152/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1838152] Re: gnome-shell freezes on notification arrival (fixed upstream)

2020-08-05 Thread Alan Pope  濾
** Tags added: rls-bb-incoming

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1838152

Title:
  gnome-shell freezes on notification arrival (fixed upstream)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1838152/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1838152] Re: gnome-shell freezes on notification arrival (fixed upstream)

2019-09-02 Thread Bug Watch Updater
** Changed in: gnome-shell
   Status: Unknown => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1838152

Title:
  gnome-shell freezes on notification arrival (fixed upstream)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1838152/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1838152] Re: gnome-shell freezes on notification arrival (fixed upstream)

2019-07-30 Thread Luca
I can't. If I click it I get "You do not have permission to nominate
this bug." since I'm not a maintainer of this package.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1838152

Title:
  gnome-shell freezes on notification arrival (fixed upstream)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1838152/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1838152] Re: gnome-shell freezes on notification arrival (fixed upstream)

2019-07-29 Thread Daniel van Vugt
You should see the "Nominate for series" link above "Bug Description".
Please click it if you can.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1838152

Title:
  gnome-shell freezes on notification arrival (fixed upstream)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1838152/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1838152] Re: gnome-shell freezes on notification arrival (fixed upstream)

2019-07-29 Thread Luca
Hi Daniel, thanks for your prompt reply. 
Good to see that this problem is fixed in future versions of Ubuntu. 
Indeed it would be nice to see it in 18.04, I'm not a member of the project 
therefore I can't do "Nominate for series" but I hope someone does nominate it 
as the issue seems relatively small and improves performance/avoid a crash.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1838152

Title:
  gnome-shell freezes on notification arrival (fixed upstream)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1838152/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1838152] Re: gnome-shell freezes on notification arrival (fixed upstream)

2019-07-28 Thread Daniel van Vugt
Thanks for the bug report.

If you would like the bug fixed in 18.04 then please click the above
link "Nominate for series".

** Tags added: bionic

** Bug watch added: gitlab.gnome.org/GNOME/gnome-shell/issues #470
   https://gitlab.gnome.org/GNOME/gnome-shell/issues/470

** Also affects: gnome-shell via
   https://gitlab.gnome.org/GNOME/gnome-shell/issues/470
   Importance: Unknown
   Status: Unknown

** Tags added: fixed-in-3.31.90 fixed-upstream

** Also affects: gnome-shell (Ubuntu Eoan)
   Importance: Undecided
   Status: New

** Also affects: gnome-shell (Ubuntu Disco)
   Importance: Undecided
   Status: New

** Changed in: gnome-shell (Ubuntu Disco)
   Status: New => Fix Released

** Changed in: gnome-shell (Ubuntu Eoan)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1838152

Title:
  gnome-shell freezes on notification arrival (fixed upstream)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1838152/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs