Skip to content

Commit

Permalink
Use default consistency level for visibility DeleteWorkflowExecution (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruva-groww authored and alexshtin committed Jul 29, 2022
1 parent b48cf2a commit 4a5f6ed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ func (v *visibilityStore) DeleteWorkflowExecution(
panic("Cassandra visibility store: DeleteWorkflowExecution: both StartTime and CloseTime are nil")
}

if err := query.Consistency(v.lowConslevel).Exec(); err != nil {
if err := query.Exec(); err != nil {
return gocql.ConvertError("DeleteWorkflowExecution", err)
}
return nil
Expand Down

0 comments on commit 4a5f6ed

Please sign in to comment.