Leo Kirchner
Leo Kirchner
We are currently recommending to use `dir(object)` - this shows property fields as well, such as prefix.prefix in 1.6 - we should recommend to use `__dict__` or `_meta.get_fields()` instead.
### Environment * Python version: * Nautobot version: 1/2 * nautobot-ssot version: 1.6/2.0 ### Expected Behavior When defining a model like this: ``` from typing import Annotated from nautobot.tenancy.models import...
### Steps to Reproduce https://docs.nautobot.com/projects/ssot/en/latest/user/modeling/#-to-many-relationships Take a look here: https://github.com/nautobot/nautobot-app-ssot/pull/292
Log statement every 1000 (?) items to know the job is still progressing
### Environment * Nautobot version: * nautobot-ssot version: ### Proposed Functionality ### Use Case If I need some special filtering logic for a certain model, I want a hook where...
### Use Case For example injecting diffsync flags like `SKIP_UNMATCHED_DST` on an object-level.
As part of the pydantic 2.0 release, a suite of breaking changes were released. We need to investigate where this breaks diffsync. Related: - https://github.com/networktocode/diffsync/issues/236 - https://github.com/networktocode/circuit-maintenance-parser is also using...
With Nautobot 2.0, the signature of the `run` method of a job is dependent on its input variables. This means that contrary to how it _used_ to work, SSoT job...
Write a page in the docs that details common debugging steps like - manually loading the adapter and peeking inside - manually instantiating objects and running create/update/delete - ...?