> The sleep process will outlive the launcher process at most 60
seconds, after which it will exit.

A problem I'm seeing is that the sleep process is sometimes *blocking*
progression of other scripts e.g. if you pipe the output of a chromium
process to something else:

```
$ snap refresh
All snaps up to date.

$ snap list | grep chromium
chromium                 81.0.4044.138               1143  latest/stable    
canonical*    -

$ time chromium --product-version
81.0.4044.138

real    0m0.206s
user    0m0.107s
sys     0m0.110s

$ time chromium --product-version | tee /dev/null
81.0.4044.138

real    1m0.161s   # <--- !!!
user    0m0.122s
sys     0m0.078s
```

I came here from https://github.com/titusfortner/webdrivers/issues/168 as 
mentioned in #5, and the situation there is slightly worse, for reasons that 
aren't clear to me. That Ruby code is attempting to read the Chromium version 
through a pipe, very much like the following code, and this blocks 
*indefinitely*, not just for 60 seconds:
```
$ irb
irb(main):001:0> pipe = IO.popen(['chromium','--product-version'])
=> #<IO:fd 7>
irb(main):002:0> pipe.read
 … hangs indefinitely …
```

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to chromium-browser in Ubuntu.
https://bugs.launchpad.net/bugs/1864901

Title:
  [snap] suggestion: alert users when the snap has been refreshed while
  running

Status in chromium-browser package in Ubuntu:
  Fix Released

Bug description:
  When the chromium snap is being automatically refreshed to a newer
  revision while the app is running, undefined behaviour might happen,
  as well as data loss (because the profile folder is versioned). This
  issue is regularly being reported (see e.g. the duplicates of bug
  #1616650).

  Jamie has an interesting suggestion to mitigate this situation, until
  refresh app awareness becomes default:

      « […] it would be possible for you to run something in the
  background that could occasionally see if the current symlink changed,
  and then alert to restart

      whenever refresh app awareness lands, it could be converted to see
  if something is pending, if so, prompt/alert to stop to have updates
  applied, or something

      simple idea is to nohup a script in a wrapper before invoking
  chromium proper

      iirc, firefox used to have UX built into it letting the user know
  it needed to be restarted, so there is some precedent for this sort of
  thing »

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/1864901/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to     : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp

Reply via email to