I am disabling pagination in the ConfD CLI using the following command:
maapi --clicmd --get-io --no-error "paginate false;"
The paginate false
setting is applied correctly, but an error still appears in the ConfD logs:
=ERROR REPORT==== 1-Apr-2025::21:47:17.800202 ===
cli_cmd_io got {paginate,true}
=ERROR REPORT==== 1-Apr-2025::21:47:31.432143 ===
cli_cmd_io got {paginate,false}
This behavior can be reproduced with the following example:
/ # maapi --clicmd --get-io --no-error "paginate true"
/ # maapi --cliget "paginate"
true
/ # maapi --clicmd --get-io --no-error "paginate false"
/ # maapi --cliget "paginate"
false
This behavior started occurring after the ConfD version was updated from 7.2.6 to 8.0.6.
I would like to understand:
- Why does this error message appear even though the command works?
- Does this error indicate a problem that could impact the CLI’s functionality?
- Is there a way to avoid this error when applying
paginate false
viamaapi --clicmd
?
I appreciate any guidance on this behavior!