Skip to content

Commit fb84cf1

Browse files
committed
self review
1 parent 02f17cf commit fb84cf1

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

core/integration/tests/server/scenarios/consumer_group_with_single_client_polling_messages_scenario.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,6 @@ async fn execute_using_none_key(client: &IggyClient) {
175175
let message = &polled_messages.messages[0];
176176
assert_eq!(message.header.offset, offset);
177177
let payload = from_utf8(&message.payload).unwrap();
178-
179178
assert_eq!(
180179
payload,
181180
&create_extended_message_payload(partition_id, entity_id)

core/server/src/shard/handlers.rs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -382,8 +382,6 @@ async fn handle_request(
382382

383383
let ns = IggyFullNamespace::new(stream_id.clone(), topic_id.clone(), partition_id);
384384

385-
info!("DBG PollMessage: -1");
386-
387385
match initial_data {
388386
SocketTransferPayload::SendMessages { batch } => {
389387
let batch = shard.maybe_encrypt_messages(batch)?;
@@ -457,14 +455,10 @@ async fn handle_request(
457455
sender
458456
.send_ok_response_vectored(&response_length_bytes, bufs)
459457
.await?;
460-
461-
info!("DBG PollMessage: 2");
462458
}
463459
}
464460
}
465461

466-
info!("DBG PollMessage: 3");
467-
468462
registry.spawn_connection(async move {
469463
match handle_connection(&session, &mut sender, &shard_for_conn, conn_stop_receiver)
470464
.await
@@ -496,7 +490,6 @@ async fn handle_request(
496490
}
497491
});
498492

499-
info!("DBG PollMessage: 4");
500493
Ok(ShardResponse::SocketTransferResponse)
501494
}
502495
}

0 commit comments

Comments
 (0)