Jack Williams

Results 18 comments of Jack Williams

Would love to help clear this up! What are some examples I can work through? Currently "_System Sounds_" seems to work fine for me, though I'm assuming maybe this is...

Fantastic work on this, @clex25, and thanks loads for the work-around with the latest alpha build, @Haze1707. Fantastic to see people pooling their efforts to make this better for everyone!...

If I comment out the `MMDeviceEnumerator::EnumerateAudioEndPoints` calls inside `AudioDevice::UpdateDevices` (the code below), the leak almost completely disappears. ``` c# outputDevices = deviceEnumerator.EnumerateAudioEndPoints(DataFlow.Render, DeviceState.Active); inputDevices = deviceEnumerator.EnumerateAudioEndPoints(DataFlow.Capture, DeviceState.Active); foreach (MMDevice mmDevice...

Even more specifically, it's adding to the `OnSessionCreated` event handler that's causing the leak here. However, even if I try to remove it on clean-up using `-=`, they never leave...

There's a refactor at #67 that solves this. :)

I haven't been able to reproduce anything that gets the memory that high - constantly moving sliders has me hit ~60MB which quickly gets garbage collected too! What version of...

@dentarg I've had the same troubles trying to get RabbitMQ to start healthily here. I posted [a thread at github.community](https://github.community/t5/GitHub-Actions/Using-a-RabbitMQ-service-to-test-NPM-package/m-p/31885#M929) with the same issue. I'll keep an eye on both!

@dentarg Absolute star. I tried lots of different thins, but, following your example, the final changes were `image` from `rabbitmq:management` to `rabbitmq:latest` and the `options` for the service from: ```...

@dentarg Aye I'm aware of the two changes there, but I don't think either are what actually made it work, is all. The inclusion of the management plugin shouldn't really...

@chrispat Sounds like that might have been the real fix then! Cool! Along with @dentarg, I'd love to know any methods of debugging these issues ourselves in the future if...