Skip to content

Commit

Permalink
fix: session not being recreated
Browse files Browse the repository at this point in the history
  • Loading branch information
lukashornych committed Oct 16, 2024
1 parent 6410b55 commit 65dfe33
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export class EvitaSessionProvider {
}
)
} catch (e) {
if (e instanceof ConnectError && e.code === Code.InvalidArgument) {
if (e instanceof ConnectError) {
// ignore, session already closed
return
}
Expand Down

0 comments on commit 65dfe33

Please sign in to comment.