Skip to content

Commit 477dbb4

Browse files
rlgyswoft-bot
authored andcommitted
fix: Fix Auth token cache time (swoft-cloud/swoft-component#223)
* composer update * fix #419 token cache time is incorrect. * update composer
1 parent c0f55c2 commit 477dbb4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/AuthManager.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public function login(string $accountTypeName, array $data): AuthSession
107107
if ($this->cacheEnable === true) {
108108
try {
109109
$this->getCacheClient()
110-
->set($this->getCacheKey($session->getIdentity(), $session->getExtendedData()), $session->getToken(), $session->getExpirationTime());
110+
->set($this->getCacheKey($session->getIdentity(), $session->getExtendedData()), $session->getToken(), $this->getSessionDuration());
111111
} catch (InvalidArgumentException $e) {
112112
$err = sprintf('%s Invalid Argument : %s', $session->getIdentity(), $e->getMessage());
113113
throw new AuthException(ErrorCode::POST_DATA_NOT_PROVIDED, $err);
@@ -135,7 +135,6 @@ public function generateSession(string $accountTypeName, string $identity, array
135135
->setCreateTime($startTime)
136136
->setIdentity($identity)
137137
->setAccountTypeName($accountTypeName);
138-
$session->setExtendedData($data);
139138
$token = $this->getTokenParser()->getToken($session);
140139
$session->setToken($token);
141140
return $session;

0 commit comments

Comments
 (0)