Glenn Matthews

Results 301 comments of Glenn Matthews
trafficstars

That's really weird, as there's virtually no difference between the code paths for text field versus file upload: ```py if csv_file: csv_bytes = csv_file else: csv_bytes = BytesIO(csv_data.encode("utf-8")) ``` I'll...

Worked here on 2.2.7 with file upload: ![image](https://github.com/user-attachments/assets/3eaf9ac1-ec3b-48ee-a1e4-06f642980da1) ![image](https://github.com/user-attachments/assets/152a7ce5-4070-4c83-93d6-84d34d688902) Also worked today on demo.nautobot.com: ![image](https://github.com/user-attachments/assets/21a10906-5e99-48e7-923f-476bb05f2256) ![image](https://github.com/user-attachments/assets/ec1e515e-e628-4088-a8e8-1291fe9b96c6) If you're able to reproduce this again, could you capture the `Job keyword arguments`...

Aha! Thank you for chasing that down. It looks like this might be addressable by opening the file with encoding `utf-8-sig` instead of `utf-8`. - Django 3 and 4 don't...

Does it work if you provide `host` and `mask_length` keys under `ip_address` instead of an `address` key?

Yeah, that definitely sounds like something in the REST API isn't correctly interpreting the dictionary as such. Are you able to capture the payload of the API request or reproduce...

Maybe also add an appropriate `TenantColumn` to the AutonomousSystem `Table` class?

Relates to #3259. I think enhancing NaturalKeyOrPKMultipleChoiceFilter to support the string-based filter extensions on the natural key should address the 80% use case here, and be a good deal simpler...

> Not sure why unit tests are failing, saw this in local dev too, don't appear to be related to this PR Yeah something seems to have gone awry in...

> Back to working on this, still working out integrating module families to factory data for tests Thank you! Feel free to reach out on Slack if you encounter any...