feat: integrate bounded external auth sessions

This commit is contained in:
donghyeon-ka
2026-07-25 20:54:18 +09:00
parent 37ca2c3172
commit 44414c5244
4 changed files with 197 additions and 0 deletions
+5
View File
@@ -109,6 +109,11 @@ export function createHttpClient(dependencies) {
continue;
}
if (outcome.error.httpStatus === 401 && recoveryUsed) {
authSession.onUnauthenticated();
return outcome;
}
if (!shouldRetry(operation, outcome.error, retryCount)) {
return outcome;
}