Glenn Matthews

Results 298 comments of Glenn Matthews
trafficstars

Possibly related: https://github.com/nautobot/nautobot/pull/5581 (included in 2.2.3 and later)

At the database level, an IPAddress derives its namespace through its parent Prefix rather than directly referencing a namespace itself. However, you *can* provide a namespace when creating an IPAddress...

If there's specifically a need to be able to do things like `IPAddress(namespace__name="...")` or `IPAddress(parent__prefix="...")` that would have to be some new code added in core.

@alhogan Could you by chance provide examples of the specific subsets they're wanting to import/exclude?

Interesting idea. Since there's no ability for a Job to pause and prompt for additional inputs mid-run, we'd probably need some way to have one Job report on the available...

Generally speaking text fields shouldn't be `null=True`. Probably the fix here would be to set `default=""` instead?

Looks like you're using Python 3.6 - latest versions of Nautobot do not support Python 3.6 any more, and various dependencies have also dropped Python 3.6 support as well. Can...

Some googling suggests that *maybe* this could indicate that your Redis server is running an older version than is required. I believe 4.0 is currently the minimum required version. Can...

That error looks like something's off about your database migration status - `column "advanced_ui" of relation "extras_customfield" does not exist` suggests to me that you haven't run migration [0025_add_advanced_ui_boolean_to_customfield_conputedfield_and_relationship](https://github.com/nautobot/nautobot/blob/develop/nautobot/extras/migrations/0025_add_advanced_ui_boolean_to_customfield_conputedfield_and_relationship.py) before...