Skip to content

CreateInstanceUnitTest and GenerateLocalOfferUnitTest hang #1

Description

@lostmsu

Known workaround is to Dispose things:

RTPSession rtpSession = new RTPSession(true, true, true);
to:
using RTPSession rtpSession = new RTPSession(true, true, true);

and:

var rtpIceChannel = new RtpIceChannel(null, RTCIceComponent.rtp, null);

to:

using var rtpIceChannel = new RtpIceChannel(null, RTCIceComponent.rtp, null);

For the second hang, RTCPeerConnectionUnitTest.GenerateLocalOfferUnitTest:

RTCPeerConnection pc = new RTCPeerConnection(null);

changed to:

using RTCPeerConnection pc = new RTCPeerConnection(null);

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions