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 #32 check client connection on auth #33

Merged
merged 1 commit into from
Jan 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions app/api/auth/[...nextauth]/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,16 @@ const authOptions: AuthOptions = {

await client.on('error', err => {
// Close coonection on error and remove from connections map
console.log('FalkorDB Client Error', err)
console.error('FalkorDB Client Error', err)
let connection = connections.get(id)
if (connection) {
connections.delete(id)
connection.disconnect()
}
}).connect();

// Verify connection
await client.ping()

connections.set(id, client as RedisClientType)

Expand All @@ -59,7 +62,7 @@ const authOptions: AuthOptions = {
}
return res
} catch (err) {
console.log(err)
console.error('FalkorDB Client Connect Error', err)
return null;
}
}
Expand Down
Loading