masaori335 commented on issue #7871:
URL: https://github.com/apache/trafficserver/issues/7871#issuecomment-847522335
Making sure that disabling read/write of VC at
`Http2ClientSession::destroy()` could be a workaround fix. I confirmed below
change can fix the crash.
But it looks like this is one of the issues of the closing path is
complicated. I'd like to cover this case by #7845.
```
@@ -72,6 +72,11 @@ Http2ClientSession::Http2ClientSession() : super() {}
void
Http2ClientSession::destroy()
{
+ if (_vc) {
+ _vc->do_io_close();
+ _vc = nullptr;
+ }
+
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]