Claudio Beretta

Results 19 comments of Claudio Beretta

Thanks, the quick fix works ``` class YourAdapter(NautobotAdapter): ... def load(self): super().load() for obj in self.get_all(self.interface): obj.trunk_groups = sorted(obj.trunk_groups, key=operator.itemgetter("name")) self.update(obj) ```

from @glennmatthews in [slack](https://networktocode.slack.com/archives/C01NWPK6WHL/p1716243873690419): > We had to lock down the use of HTML in computed fields due to security risks (https://github.com/nautobot/nautobot/security/advisories/GHSA-cf9f-wmhp-v4pr); that said, I think the current implementation may...

Thanks for looking into this so quickly! I didn't realize v1 was supposed to remove double empty lines - it never did for me. I also didn't think two empty...

if your custom plugin uses model_flags and nautobot refuses to load it with this error message ``` 22:20:19.081 ERROR nautobot.core.utils.module_loading module_loading.py import_modules_privately() : Unable to load module my_beautiful_plugin from /opt/nautobot/jobs:...

While it would be nice to have a documented way to specify custom CSS, this seems to work: ``` .sl-elements .OperationParametersContent { max-height: inherit; } ``` Here I'm replacing the...

Hi Jeff, the problem still persists in Python version: 3.9.19 Nautobot version: 2.2.9 nautobot-plugin-nornir version: 2.1.0 golden config version: 2.1.2

I'm having the same issue with Python version: 3.9 Nautobot version: 2.3.16 nautobot-golden-config version: 2.2.1 I'm running celery-worker in k8s on a host with plenty of memory and the default...

I tried disabling garbage collection during this job by calling gc.disable() in IntendedJob.run() before https://github.com/nautobot/nautobot-app-golden-config/blob/0b001132e92cc0b90b8d8628afa87d151eed6642/nautobot_golden_config/jobs.py#L267 but that didn't solve the issue. ``` gc.collect(generation=2) gc.disable() config_intended(self) gc.enable() ``` Perhaps nornir runs...

I'm running this patch now to https://github.com/pallets/jinja/blob/main/src/jinja2/utils.py as a workaround - doesn't seem to have serious side effects (other than making the jinja cache less effective, which is better than...