Skip to content

Commit

Permalink
fix FalkorDB#32 check client connection on auth
Browse files Browse the repository at this point in the history
  • Loading branch information
gkorland committed Jan 21, 2024
1 parent 9dd1141 commit d43ee0f
Showing 1 changed file with 5 additions and 2 deletions.
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

0 comments on commit d43ee0f

Please sign in to comment.