You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using get_config with filters doesn't seem to work with netconf-perl. A small issue in getting the filter value in request parameters is causing the issue.
In Device.pm line 576,
$request .= $args{filter};
Does not have single quote to access the value for the key filter
Adding those single quotes will fix the working of get_config
If needed I can contribute.
Thanks,
Balakrishnan.
The text was updated successfully, but these errors were encountered:
Issue Juniper#35 : For fields which are not predefined in %methods, use the input as it is without changing _ to -.
Issue Juniper#37 : Included quotes
Issue Juniper#38 : Commented out the print statement.
Additional change : Commented out 'Disconnecting' carp call.
Issue #35 : For fields which are not predefined in %methods, use the input as it is without changing _ to -.
Issue #37 : Included quotes
Issue #38 : Commented out the print statement.
Additional change : Commented out 'Disconnecting' carp call.
Hi,
Using
get_config
with filters doesn't seem to work with netconf-perl. A small issue in getting the filter value in request parameters is causing the issue.In Device.pm line 576,
$request .= $args{filter};
Does not have single quote to access the value for the key
filter
Adding those single quotes will fix the working of
get_config
If needed I can contribute.
Thanks,
Balakrishnan.
The text was updated successfully, but these errors were encountered: