Currently running the put all operation leads to this error:
"credstash.py”, line 386, in putSecretAction
context=args.context, digest=args.digest, comment=args.comment,
AttributeError: ‘Namespace’ object has no attribute ‘comment’
This is because the comment is not an argument for the putall operation but put is expecting comment.
Adding the comment to the putall operation solves the problem and it also makes sense to add a comment in the bulk put operation.
Currently running the
put all
operation leads to this error:This is because the comment is not an argument for the putall operation but
put
is expectingcomment
. Adding the comment to the putall operation solves the problem and it also makes sense to add a comment in the bulk put operation.