We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32afd5b commit 137b942Copy full SHA for 137b942
1 file changed
src/room/rpc/client/RpcClientManager.ts
@@ -188,10 +188,8 @@ export default class RpcClientManager extends (EventEmitter as new () => TypedEm
188
const associatedRequestId = attributes[RPC_REQUEST_ID_ATTR];
189
if (!associatedRequestId) {
190
this.log.warn(`RPC data stream malformed: ${RPC_REQUEST_ID_ATTR} not set.`);
191
- this.handleIncomingRpcResponseFailure(
192
- associatedRequestId,
193
- RpcError.builtIn('APPLICATION_ERROR'),
194
- );
+ // NOTE: no response can be sent here, because there's no request id so associate
+ // so logging is the best we can do here.
195
return;
196
}
197
0 commit comments