Skip to content

Commit 6ffec08

Browse files
committed
log it out
1 parent 0975acd commit 6ffec08

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

tests/s3_data_plane_tests.c

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff 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) {

0 commit comments

Comments
 (0)