*: rename Snapshot STM isolation to SerializableSnapshot

Pure Snapshot isolation would permit read conflicts. Change the name
from Snapshot to SerializableSnapshot to reflect that it will also
reject read conflicts.
This commit is contained in:
Anthony Romano
2017-04-11 14:08:01 -07:00
parent 216a6347b2
commit 4f9aa276bd
2 changed files with 5 additions and 4 deletions

View File

@@ -88,7 +88,7 @@ func stmFunc(cmd *cobra.Command, args []string) {
case "s":
stmIso = v3sync.Serializable
case "ss":
stmIso = v3sync.Snapshot
stmIso = v3sync.SerializableSnapshot
default:
fmt.Fprintln(os.Stderr, cmd.Usage())
os.Exit(1)