File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
engine/packages/pegboard-gateway/src
rivetkit-typescript/packages/rivetkit/src/client Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -669,7 +669,7 @@ impl PegboardGateway {
669669
670670 match & hibernation_res {
671671 HibernationResult :: Continue => {
672- tracing:: debug!( "received message during hibernation" ) ;
672+ tracing:: debug!( "received websocket message during hibernation" ) ;
673673 }
674674 HibernationResult :: Close => {
675675 tracing:: debug!( "websocket stream closed during hibernation" ) ;
Original file line number Diff line number Diff line change 531531 } ) ;
532532
533533 const disconnectError = new Error (
534- wasClean ? "Connection closed" : "Connection lost" ,
534+ ` ${ wasClean ? "Connection closed" : "Connection lost" } (code: ${ closeEvent . code } , reason: ${ closeEvent . reason } )` ,
535535 ) ;
536536
537537 for ( const actionInfo of this . #actionsInFlight. values ( ) ) {
You can’t perform that action at this time.
0 commit comments