fix(relay): heartbeats are sent to portal not the relay (#2070)

This commit is contained in:
Thomas Eizinger
2023-09-14 17:23:07 +10:00
committed by GitHub
parent cefc7cc989
commit 94ded341f1

View File

@@ -532,7 +532,7 @@ where
return Poll::Ready(Err(anyhow!("Init message is not a request")));
}
Some(Poll::Ready(Ok(Event::HeartbeatSent))) => {
tracing::debug!("Heartbeat sent to relay");
tracing::debug!("Heartbeat sent to portal");
continue;
}
Some(Poll::Pending) | None => {}