Results 68 comments of Jan Krupa

> Hi @Kani999 > > Looks like these changes are causing existing parser tests to fail > > Please adjust the code so that these tests pass. If you need...

@abhi1693 I've changed the `flatten_custom` method, which basically does nothing at the moment. So it works like a previous change. > `custom_dict` always contains the `id` field which I believe...

- Tested against Netbox v3.0.3 - Code copied and edited from `pynautobot`

> Hello @Kani999 please resolve conflicts and rebase. I will try to discuss this with @zachmoody some more. @ryanmerolle I've updated the repository, so all conflicts should be resolved.

@dgarros - #140 - I didn't find out, how to pass `NAPALM arguments` to platform and get it work with `onboarding plugin`. So I've edited the code -

- Tested against ios devices - log: ``` netbox-worker_1 | START: onboard device netbox-worker_1 | CHECK: IP xxx.xxx.xxx.34:23 netbox-worker_1 | COLLECT: device information xxx.xxx.xxx.34 netbox-worker_1 | OPT ARGS: {'secret': 'password',...

@ckozler I'm currently running into the same problem. `AttributeError: 'NoneType' object has no attribute 'primary_ip'` The `dev` object is None. Debug Log ``` 2021-02-12 10:29:30,745 - network-importer - INFO -...

> I just published a new version in Pypi : `2.0.0-beta4` that is solving this issue. @dgarros Thank you. There is no problem with the error above. --- May I...

https://github.com/napalm-automation/napalm/blob/develop/napalm/pyIOSXR/iosxr.py#L409 https://github.com/napalm-automation/napalm/blob/develop/napalm/pyIOSXR/iosxr.py#L415 ```python def _execute_rpc(self, command_xml, delay_factor=0.1): xml_rpc_command = ( '' + command_xml + "" ) response = self._send_command(xml_rpc_command, delay_factor=delay_factor) ``` xml_rpc_command = ```XML 0 ``` response = ```XML \n...

@ktbyers Could you help me with how I can get the whole XML representation from the device? So I can look at what's in there when `PlatfomrInventory` is missing?