We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f43a30f commit 9b05222Copy full SHA for 9b05222
src/core/database/cypher.factory.ts
@@ -37,7 +37,7 @@ const parseRoutingTable = (routingTableStr: string) => {
37
return undefined;
38
}
39
return {
40
- database: matched[1] === 'default database' ? null : matched[0],
+ database: matched[1] === 'default database' ? null : matched[1],
41
expirationTime: parseInt(matched[2], 10),
42
currentTime: parseInt(matched[3], 10),
43
routers: csv(matched[4]),
0 commit comments