Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(core): use createSessionFunction when loading Session from persisted state #2444

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/core/src/session_pool/session_pool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export interface SessionPoolOptions {
/**
* Control how and when to persist the state of the session pool.
*/
persistenceOptions?: PersistenceOptions;
persistenceOptions?: PersistenceOptions;
}

/**
Expand Down Expand Up @@ -472,7 +472,7 @@ export class SessionPool extends EventEmitter {
sessionObject.sessionPool = this;
sessionObject.createdAt = new Date(sessionObject.createdAt as string);
sessionObject.expiresAt = new Date(sessionObject.expiresAt as string);
const recreatedSession = new Session(sessionObject);
const recreatedSession = await this.createSessionFunction(this, { sessionOptions: sessionObject });

if (recreatedSession.isUsable()) {
this._addSession(recreatedSession);
Expand Down