Rename expire -> expiration

This commit is contained in:
Joel Speed 2019-05-16 17:08:10 +01:00
parent d461812444
commit 22b42848b8
No known key found for this signature in database
GPG Key ID: 6E80578D6751DEFB

View File

@ -202,8 +202,8 @@ func (store *SessionStore) storeValue(value string, expiresOn time.Time, request
stream.XORKeyStream(ciphertext, []byte(value))
handle := ticket.asHandle(store.CookieOptions.CookieName)
expires := expiresOn.Sub(time.Now())
err = store.Client.Set(handle, ciphertext, expires).Err()
expiration := expiresOn.Sub(time.Now())
err = store.Client.Set(handle, ciphertext, expiration).Err()
if err != nil {
return "", err
}