mariusziemke

Results 13 comments of mariusziemke

Hi @Sean-Der, how should we continue here? Did you think about the need of `receiveForRid` in `peerconnection.go`?

I had issues with memory and cpu, because as far as I understand the websocket connection stays open. We are using chrome to record meetings in the cloud and we...

Yes we observed a huge improvement in our dev environment. The two vertical blue lines show our deployments. We don't want to keep the connection up and running because of...

Thanks for the detailed response! I agree with you on all the points you made. 👍🏼 `dontClose` is quite a bad name indeed.. Here are some suggestions: - `dontCloseTarget` -...

Hi, I've got the same issue and resolved it kind of simple I guess. Just import the `ScheduleModule` into the TestingModule. e.g. ```typescript const module = await Test.createTestingModule({ imports: [...

We are experiencing the same issue after about ~1 hour (v0.14.3). `setKeepalive` is probably not working due to https://github.com/request/request/issues/3367 not being merged yet. Is anyone having a suitable workaround until...

We upgrade node from version 12 to 15 and the issue seems to be gone. Not sure why, but maybe this helps :-)

Hi @Sean-Der, nice hearing from you and no problem at all! Thanks for the update, I will give it a try in the near future :-)

Hi, you can probably do the following: ```go var msg = "{...}" // your json serialized message var message discordgo.Message if err := message.UnmarshalJSON(msg); err != nil { panic(err) }...

Hi, can anyone look into this PR? Thanks!