-
Notifications
You must be signed in to change notification settings - Fork 640
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
random ASSERT on boost::beast:websocket::impl::write.hpp with program termination #2943
Comments
Is there a chance you're calling websocket::stream::async_write before the first operation has finished?
|
well, an strand doesn't prevent you from calling |
I know this, there´s a queueing mechanism to handle output from websocket
client app, to allow one 1 async_write once a time.
I'll put more debug info on this code, because it was done years ago and
never got this assertion before.
…On Wed, Oct 23, 2024 at 4:32 PM Mohammad Nejati ***@***.***> wrote:
well, an strand doesn't prevent you from calling async_write multiple
times.
—
Reply to this email directly, view it on GitHub
<#2943 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABDEMZT7H7LWXTE4A3ZEITTZ472VLAVCNFSM6AAAAABQPJH5U6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDIMZTGI3TCNBTGY>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
I got the assert again, but what I detected: thread 1 create a ssl<tcp_stream> and perform a https request/reply (beast::async_write/beast::async_read), if I close the socket stream on another thread to abort the operation in case I've managed to handle this connection status on my code, however, it seems to be a issue because the app couldn't Is there a way to 'close' the stream socket by another thread without raising this issue? |
If you want to close the stream from another thread, post the operation to the strand to prevent race conditions. asio::post(ws.get_executor(), [&]{ ws.async_close(...); }); Assuming the websocket stream was constructed using an strand. |
yes. it was. I'm trying to handle a 'request timed out' or 'communication timed out issue' when you issue a beast::async_read and cannot get a answer in a specific amount of time. |
Got an exception using boost::beast websocket with SSL, on this part of code
(file include/boost/beast/websocket/impl/write.hpp, line 549, on impl.wr_block.unlock(this), where wr_block.id_ == 0).
}
Using boost/1.86.0 from conan, built with clang++ using the following profile settings:
[settings]
arch=x86_64
build_type=Debug
compiler=clang
compiler.cppstd=23
compiler.version=18
compiler.libcxx=libstdc++11
os=Linux
[conf]
tools.build:compiler_executables = {"cpp": "/usr/bin/clang++", "c": "/usr/bin/clang"}
tools.build:cflags=["-fsanitize=address", "-g", "-O0"]
tools.build:cxxflags=["-fsanitize=address", "-g", "-O0"]
tools.build:exelinkflags=["-fsanitize=address", "-g", "-O0"]
tools.build:sharedlinkflags=["-fsanitize=address", "-g", "-O0"]
tools.info.package_id:confs=["tools.build:cflags", "tools.build:cxxflags", "tools.build:exelinkflags", "tools.build:sharedlinkflags"]
[options]
b2/*:toolset=clang
Maybe the assertion being raised probably because of releasing a lock already released?
The call stack is attached as a file because cannot add it here since it´s bigcallstack.txt
The text was updated successfully, but these errors were encountered: