Merge pull request #4194 from hashicorp/fix-kv-del-validation

Fix KV del command validation error
This commit is contained in:
Paul Banks 2018-06-05 16:58:14 +01:00 committed by GitHub
commit 2973dd6a68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -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