remove setsession on userstore #204

Closed
carlos wants to merge 3 commits from double-session-id into master
Showing only changes of commit 944e1841bb - Show all commits

View File

@ -18,7 +18,6 @@ type UserDataStore struct {
// ReadEntry retrieves an entry to the userdata store.
func (store *UserDataStore) ReadEntry(ctx context.Context, sessionId string, typ DataTyp) ([]byte, error) {
store.SetSession(sessionId)
store.SetPrefix(db.DATATYPE_USERDATA)
k := PackKey(typ, []byte(sessionId))
return store.Get(ctx, k)