Skip to content

Commit

Permalink
chore: remove dbg
Browse files Browse the repository at this point in the history
  • Loading branch information
dqhl76 committed Nov 19, 2024
1 parent f51316c commit 32ad243
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ impl AsyncSource for BlockPartitionReceiverSource {
#[async_backtrace::framed]
async fn generate(&mut self) -> Result<Option<DataBlock>> {
match self.meta_receiver.recv().await {
Ok(Ok(part)) => dbg!(Ok(Some(DataBlock::empty_with_meta(
Ok(Ok(part)) => Ok(Some(DataBlock::empty_with_meta(
BlockPartitionMeta::create(vec![part]),
)))),
))),
Ok(Err(e)) => Err(
// The error is occurred in pruning process
e,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ impl AsyncSink for SendPartInfoSink {

for info in info_ptr {
if let Some(sender) = &self.sender {
let _ = dbg!(sender.send(Ok(info)).await);
let _ = sender.send(Ok(info)).await;
}
}

Expand Down

0 comments on commit 32ad243

Please sign in to comment.