Rename expire -> expiration
This commit is contained in:
		
							parent
							
								
									2f61e42c37
								
							
						
					
					
						commit
						a6b8f7bde2
					
				|  | @ -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 | ||||
| 	} | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue