fix(routeWebSocket): do not show in the trace (#32991)

This commit is contained in:
Dmitry Gozman 2024-10-08 02:47:24 -07:00 committed by GitHub
parent 1b589c4bd3
commit 0f2cbdedac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -462,6 +462,7 @@ export class WebSocketRoute extends ChannelOwner<channels.WebSocketRouteChannel>
constructor(parent: ChannelOwner, type: string, guid: string, initializer: channels.WebSocketRouteInitializer) {
super(parent, type, guid, initializer);
this.markAsInternalType();
this._server = {
onMessage: (handler: (message: string | Buffer) => any) => {