tu-pm

Results 7 comments of tu-pm

Thanks for answering @safchain, Adding promiscuous mode to the interface does solve my problem, and I don't have any error messages about attaching multicast addresses. This is strange because if...

LLDP probe uses `net.ParseMAC` method to get interface MAC address, and your device doesn't have a valid MAC address as stated [here](https://golang.org/pkg/net/#ParseMAC)

Thanks @auvipy @kalekseev for your hard works on this feature, I can't wait for release 3.15 to try it out. Another thought: Can we extend this further so that DRF...

Thanks @tfranzel for the hard work. I'm playing around with the new OpenAPI 3.1 swagger from the latest release (`drf-spectacular==0.27.2` and `drf-spectacular-sidecar==2024.4.1`) by setting `'OAS_VERSION': '3.1.0',` in `SPECTACULAR_SETTINGS` and the...

I think this is the simplest/safest solution: ```python class BuildCreateRelatedMixin: _build_only = False @classmethod def _create(cls, model_class, **kwargs): build_only = kwargs.pop('_build_only', False) if build_only: return model_class(**kwargs) return super()._create(model_class, **kwargs) @classmethod...

This also fixes the problem of computed fields missing from the schema, as reported by issue #1292 and #960