Skip to content

Commit

Permalink
fix: update session namespace to avoid any duplication (#18068)
Browse files Browse the repository at this point in the history
  • Loading branch information
lyondhill authored May 12, 2020
1 parent 57ed471 commit 8872c0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions session/storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ type Store interface {
ExpireAt(key string, expireAt time.Time) error
}

var storePrefix = "sessionsv1/"
var storeIndex = "sessionsindexv1/"
var storePrefix = "sessionsv2/"
var storeIndex = "sessionsindexv2/"

// Storage is a store translation layer between the data storage unit and the
// service layer.
Expand Down

0 comments on commit 8872c0f

Please sign in to comment.