Skip to content

Commit

Permalink
fixup! [TEMP] For debugging arm ci issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jasnell committed Dec 30, 2024
1 parent 0ed62ff commit f8439a8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/quic/streams.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1104,6 +1104,8 @@ void Stream::Acknowledge(size_t datalen) {

// ngtcp2 guarantees that offset must always be greater than the previously
// received offset.
// TODO(@jasnell): Temporary debugging
printf(">>> %zu %zu\n", datalen, STAT_GET(Stats, max_offset_ack));
DCHECK_GE(datalen, STAT_GET(Stats, max_offset_ack));
STAT_SET(Stats, max_offset_ack, datalen);

Expand Down

0 comments on commit f8439a8

Please sign in to comment.