Add Propagate EventLogger Setting

This commit is contained in:
Shelikhoo 2021-12-13 16:29:10 +00:00
parent 8d2f662c8c
commit 7536dd6fb7
No known key found for this signature in database
GPG key ID: C4D5E79D22B25316
2 changed files with 12 additions and 3 deletions

View file

@ -135,7 +135,7 @@ func NewSnowflakeClient(config ClientConfig) (*Transport, error) {
if config.Max > max {
max = config.Max
}
transport := &Transport{dialer: NewWebRTCDialer(broker, iceServers, max)}
transport := &Transport{dialer: NewWebRTCDialer4E(broker, iceServers, max, config.EventDispatcher)}
return transport, nil
}