Noah Robin

Results 22 comments of Noah Robin

I just ran into this same issue when attempting to use use `Intended Config` with: - python 3.11 - Golden Configuration 1.6.3 - Nautobot 1.6.5 - MySQL 8.1.0 Are there...

For more verbose validation errors, I've found [check-jsonschema](https://github.com/python-jsonschema/check-jsonschema) (and also [on pypi](https://pypi.org/project/check-jsonschema/)), to be useful; e.g. if I add a field not supported by the schema such as `invalid_field_name` I...

Sure. Here's the my full models.py file: ```python from nautobot.apps.models import PrimaryModel from nautobot.dcim.models import DeviceType logger = logging.getLogger(__name__) logger.setLevel(logging.DEBUG) formatter = logging.Formatter("%(asctime)s - %(name)s - %(levelname)s - %(message)s") handler...

My two cents: We actually ran into a case recently where having the client send a vendor-side user-agent would have been useful; specifically, being able to run reports to determine...

Checking in on this. Zero rush on my side, it's just been a couple of weeks is all.

re-checking in on this. Still no rush; if it's going to get merged, grand, if it's not, also fine but let me know so I can stop thinking about it....

Something else possibly worth considering; there are queries (for instance DNS models case in which we ran across this) where `DISTINCT` isn't needed at all and all it does is...

I've put together this POC; thoughts? Supports: shift+click range selection or deselection of one or multiple contiguous ranges in either direction. Feedback welcome. ![Image](https://github.com/user-attachments/assets/df71cf10-13ae-40d9-9338-52c4265d8a93)

PR submitted. I also have a patch against `next` prepped, if that's useful; just LMK where to put it.