MunkeyCigar
MunkeyCigar
any solutions to this problem? why does is it still scanning everything in `INSTALLED_APPS`, even if you specify a list of packages to scan?
it looks like an issue in the `discover()` method [here](https://github.com/faust-streaming/faust/blob/9a1cf927cb37441471794f2913be2351d52f2ece/faust/app/base.py#LL712C24-L712C24). for fixup in self.fixups: modules |= set(fixup.autodiscover_modules()) the call to django fixup's [autodiscover_modules()](https://github.com/faust-streaming/faust/blob/9a1cf927cb37441471794f2913be2351d52f2ece/faust/fixups/django.py#L78) returns everything in `INSTALLED_APPS` and the logic...