Skip to content

Commit 205c1e0

Browse files
committed
Fix incorrect GetAll() in postgres store.
1 parent 1b70416 commit 205c1e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stores/postgres/postgres.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ func (s *Store) GetMulti(id string, keys ...string) (map[string]interface{}, err
172172
}
173173

174174
// GetAll returns the map of all keys in the session.
175-
func (s *Store) GetAll(id string, keys ...string) (map[string]interface{}, error) {
175+
func (s *Store) GetAll(id string) (map[string]interface{}, error) {
176176
if !validateID(id) {
177177
return nil, ErrInvalidSession
178178
}

0 commit comments

Comments
 (0)