| Index: net/quic/quic_session.cc
|
| diff --git a/net/quic/quic_session.cc b/net/quic/quic_session.cc
|
| index 3505f44e57bc0154346b204de4c4e6d72615f849..809223bb5d7b85f6bb803a7945cdcbf06a0cc0a9 100644
|
| --- a/net/quic/quic_session.cc
|
| +++ b/net/quic/quic_session.cc
|
| @@ -738,10 +738,10 @@ void QuicSession::MarkConnectionLevelWriteBlocked(QuicStreamId id,
|
| #ifndef NDEBUG
|
| ReliableQuicStream* stream = GetStream(id);
|
| if (stream != nullptr) {
|
| - LOG_IF(DFATAL, priority != stream->EffectivePriority())
|
| + LOG_IF(DFATAL, priority != stream->Priority())
|
| << ENDPOINT << "Stream " << id
|
| << "Priorities do not match. Got: " << priority
|
| - << " Expected: " << stream->EffectivePriority();
|
| + << " Expected: " << stream->Priority();
|
| } else {
|
| LOG(DFATAL) << "Marking unknown stream " << id << " blocked.";
|
| }
|
|
|