If you look at the BZ, apb relist --ca-path <ca_file> would succeed while apb relist --secure --ca-path <ca_file> would fail. This is because line 441 (446 in new code) was passing the boolean value of --secure as opposed to the CA path. I moved the conditional check higher up in the relist function to prevent this.
If you look at the BZ,
apb relist --ca-path <ca_file>
would succeed whileapb relist --secure --ca-path <ca_file>
would fail. This is because line 441 (446 in new code) was passing the boolean value of--secure
as opposed to the CA path. I moved the conditional check higher up in the relist function to prevent this.