Browse Source

consul: Minor cleanup

pull/536/head^2
Armon Dadgar 10 years ago
parent
commit
0953efd5a0
  1. 7
      consul/state_store.go

7
consul/state_store.go

@ -1328,10 +1328,11 @@ func (s *StateStore) SessionCreate(index uint64, session *structs.Session) error
}
switch session.Behavior {
case structs.SessionKeysRelease, structs.SessionKeysDelete:
// we like
case "":
session.Behavior = structs.SessionKeysRelease // force default behavior
// Default behavior is Release for backwards compatibility
session.Behavior = structs.SessionKeysRelease
case structs.SessionKeysRelease:
case structs.SessionKeysDelete:
default:
return fmt.Errorf("Invalid Session Behavior setting '%s'", session.Behavior)
}

Loading…
Cancel
Save