reporting the status of each operation in a batch; completing doable ops even if others fail.

This commit is contained in:
Ilya_Shlyakhter 2019-01-30 22:20:10 +00:00 committed by admin
parent 4f50a21137
commit f0dea0ba06

View file

@ -0,0 +1 @@
For batch commands like fromkey and setpresentkey, when some operations in a batch succeed and others fail, it's hard to know which ones were done. It would be good if the operations had an option to output the status to stdout or to a file, maybe in json format. It would also be good if there was a --keep-going option to try each operation even if some early ones fail. Currently, when some operations fail, the set of doable operations that gets done depends on the input order, and there is no reliable way to know which ones succeeded.