Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion engine/packages/pegboard-gateway/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@ impl PegboardGateway {

match &hibernation_res {
HibernationResult::Continue => {
tracing::debug!("received message during hibernation");
tracing::debug!("received websocket message during hibernation");
}
HibernationResult::Close => {
tracing::debug!("websocket stream closed during hibernation");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ enc
});

const disconnectError = new Error(
wasClean ? "Connection closed" : "Connection lost",
`${wasClean ? "Connection closed" : "Connection lost"} (code: ${closeEvent.code}, reason: ${closeEvent.reason})`,
);

for (const actionInfo of this.#actionsInFlight.values()) {
Expand Down
Loading