Merge pull request #4194 from hashicorp/fix-kv-del-validation
Fix KV del command validation error
This commit is contained in:
commit
2973dd6a68
|
@ -84,6 +84,7 @@ func (c *cmd) Run(args []string) int {
|
|||
// Specifying a ModifyIndex for a non-CAS operation is not possible.
|
||||
if c.modifyIndex != 0 && !c.cas {
|
||||
c.UI.Error("Cannot specify -modify-index without -cas!")
|
||||
return 1
|
||||
}
|
||||
|
||||
// It is not valid to use a CAS and recurse in the same call
|
||||
|
|
Loading…
Reference in New Issue