23 lines
741 B
Diff
23 lines
741 B
Diff
From: uazo <uazo@users.noreply.github.com>
|
|
Date: Fri, 19 May 2023 12:26:37 +0000
|
|
Subject: TEMP Add a log to track strange behavior
|
|
|
|
License: GPL-2.0-or-later - https://spdx.org/licenses/GPL-2.0-or-later.html
|
|
---
|
|
net/spdy/spdy_session.cc | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/net/spdy/spdy_session.cc b/net/spdy/spdy_session.cc
|
|
--- a/net/spdy/spdy_session.cc
|
|
+++ b/net/spdy/spdy_session.cc
|
|
@@ -2964,6 +2964,7 @@ void SpdySession::OnHeaders(spdy::SpdyStreamId stream_id,
|
|
if (it == active_streams_.end()) {
|
|
// NOTE: it may just be that the stream was cancelled.
|
|
LOG(WARNING) << "Received HEADERS for invalid stream " << stream_id;
|
|
+ LOG(WARNING) << "--- " << headers.DebugString();
|
|
return;
|
|
}
|
|
|
|
--
|
|
2.25.1
|