Skip Menu |

This queue is for tickets about the Browser-Open CPAN distribution.

Report information
The Basics
Id: 133315
Status: new
Priority: 0/
Queue: Browser-Open

People
Owner: Nobody in particular
Requestors: gabor [...] szabgab.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Stuck after opening browser on Ubuntu 20.04
Date: Sat, 12 Sep 2020 10:00:44 +0300
To: bug-Browser-Open [...] rt.cpan.org
From: Gabor Szabo <gabor [...] szabgab.com>
$ perl -E 'use Browser::Open qw( open_browser_cmd ); my $url = " https://perlmaven.com"; my $cmd = open_browser_cmd($url); system($cmd)' [126426:126455:0912/095622.129935:ERROR:media_history_store.cc(363)] Failed to create or update the media history store. [126464:126464:0912/095622.173511:ERROR:sandbox_linux.cc(374)] InitializeSandbox() called with multiple threads in process gpu-process. ^C Chrome opened, but the Perl command did not exit even after I closed the browser. I had to Ctrl-c to kill the command line. This works: $ perl -E 'use Browser::Open qw( open_browser_cmd ); my $url = " https://perlmaven.com"; my $cmd = open_browser_cmd($url); system("$cmd $url&")'