emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: eww/url: www connections left "open"


From: Óscar Fuentes
Subject: Re: eww/url: www connections left "open"
Date: Wed, 20 Dec 2017 05:57:50 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux)

raman <address@hidden> writes:

> This is in emacs from address@hidden -- though the issue has been around for
> a long time.
>
> If you use EWW to open a Web site -- say 
> http://www.cnn.com  ---  then do M-x list-processes --- you see  that
> there is a "open" connection to www.cnn.com hanging around (likely
> because of http keep-alive?) -- not sure. 
>
> There is no such connection hanging around if you open www.gnu.org.
>
> Most of the time, this is harmless and the connections go away ---
> except when they dont, and if more than a few of these hang around,
> then opening other URLs with EWW produces nothing. Killing those
> hanging connections with delete-process immediately gets EWW working
> again --- e.g. killing those connections with  the following loop:
>
> (cl-loop 
>  for p in (process-list)
>  when (string-match "www" (process-name p))
>  do (delete-process p))

I confirm the problem. Your method for killing those processes is not
effective because it depends on the presence of "www". Right now I have
4 open processes related to web sites, none of them contains the "www"
string.

BTW, it is preferable to report this problems with M-x report-emacs-bug.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]