File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -1755,10 +1755,11 @@ static int s_apply_backpressure_until_meta_request_finish(
17551755
17561756 /* Check that we haven't received more data than the window allows */
17571757 uint64_t max_data_allowed = accumulated_window_increments ;
1758- if (accumulated_data_size > max_data_allowed ) {
1759- AWS_FATAL_ASSERT (false);
1760- }
1761- ASSERT_TRUE (accumulated_data_size <= max_data_allowed , "Received more data than the read window allows" );
1758+ ASSERT_TRUE (
1759+ accumulated_data_size <= max_data_allowed ,
1760+ "Received more data than the read window allows accumulated_data_size: %zu, max_data_allowed: %zu" ,
1761+ (size_t )accumulated_data_size ,
1762+ (size_t )max_data_allowed );
17621763
17631764 /* If we're done, we're done */
17641765 if (done ) {
You can’t perform that action at this time.
0 commit comments