From: Michael Albinus via "Bug reports for GNU Emacs, the Swiss army knife of text editors" <bug-gnu-emacs@gnu.org>
To: 73199@debbugs.gnu.org
Cc: Alexandru Harsanyi <AlexHarsanyi@gmail.com>
Subject: bug#73199: soap-client; soap-invoke-internal is not thread-safe
Date: Thu, 12 Sep 2024 16:20:03 +0200 [thread overview]
Message-ID: <87cyl9j6ng.fsf@gmx.de> (raw)
Forward to debbugs
From: Michael Albinus <michael.albinus@gmx.de>
Subject: soap-client; soap-invoke-internal is not thread-safe
To: Alexandru Harsanyi <AlexHarsanyi@gmail.com>
Date: Thu, 12 Sep 2024 15:57:45 +0200 (19 minutes, 24 seconds ago)
In package debbugs, I try to use Emacs Lisp threads when retrieving SOAP
data from the debbugs server. However, ocaasionally I run into the error
--8<---------------cut here---------------start------------->8---
(error "Attempt to accept output from process debbugs.gnu.org locked to thread #<thread 0xc288a0>")
--8<---------------cut here---------------end--------------->8---
My work around is to advice url-http-create-request
--8<---------------cut here---------------start------------->8---
(advice-add
'url-http-create-request :around
(lambda (orig-fun)
"Set `url-http-attempt-keepalives' to nil."
(setq url-http-attempt-keepalives nil)
(funcall orig-fun))
'(name debbugs-advice))
--8<---------------cut here---------------end--------------->8---
However, it would be great if soap-invoke-internal could care.
Emacs : GNU Emacs 31.0.50 (build 35, x86_64-pc-linux-gnu, GTK+ Version 3.24.43, cairo version 1.18.0)
of 2024-09-12
Package: soap-client
next reply other threads:[~2024-09-12 14:20 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-12 14:20 Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors [this message]
2024-09-14 14:06 ` bug#73199: soap-client; soap-invoke-internal is not thread-safe Thomas Fitzsimmons
2024-09-20 9:58 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
[not found] ` <87wmit9nvh.fsf_-_@gmx.de>
2024-09-30 15:40 ` bug#73199: url-retrieve " Eli Zaretskii
2024-09-30 16:42 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-09-30 17:38 ` Eli Zaretskii
2024-10-02 16:34 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-10-02 18:30 ` Eli Zaretskii
2024-10-10 11:29 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-10-10 13:10 ` Eli Zaretskii
2024-10-11 10:44 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87cyl9j6ng.fsf@gmx.de \
--to=bug-gnu-emacs@gnu.org \
--cc=73199@debbugs.gnu.org \
--cc=AlexHarsanyi@gmail.com \
--cc=michael.albinus@gmx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.