Skip to content

Commit e3bcff5

Browse files
committed
Locked to boltkit==1.2.0
1 parent ff4380c commit e3bcff5

16 files changed

+21
-15
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
neobolt~=1.7.14
1+
neobolt~=1.7.15
22
neotime~=1.7.1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
from neo4j.meta import package, version
3131

3232
install_requires = [
33-
"neobolt~=1.7.14",
33+
"neobolt~=1.7.15",
3434
"neotime~=1.7.1",
3535
]
3636
classifiers = [

test/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
boltkit
1+
boltkit==1.2.0
22
coverage
33
mock
44
pytest

test/stub/scripts/broken_router.script

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
!: AUTO INIT
22
!: AUTO RESET
33

4-
C: RUN "CALL dbms.cluster.routing.getRoutingTable({context})" {"context": {}}
4+
C: RUN "CALL dbms.cluster.routing.getRoutingTable($context)" {"context": {}}
55
PULL_ALL
66
S: FAILURE {"code": "Neo.DatabaseError.General.UnknownError", "message": "An unknown error occurred."}
77
IGNORED

test/stub/scripts/get_routing_table.script

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
!: AUTO RESET
33

44
S: SUCCESS {"server": "Neo4j/3.2.2"}
5-
C: RUN "CALL dbms.cluster.routing.getRoutingTable({context})" {"context": {}}
5+
C: RUN "CALL dbms.cluster.routing.getRoutingTable($context)" {"context": {}}
66
PULL_ALL
77
S: SUCCESS {"fields": ["ttl", "servers"]}
88
RECORD [9223372036854775807, [{"addresses": ["127.0.0.1:9001"],"role": "WRITE"}, {"addresses": ["127.0.0.1:9002"], "role": "READ"},{"addresses": ["127.0.0.1:9001", "127.0.0.1:9002"], "role": "ROUTE"}]]

test/stub/scripts/get_routing_table_with_context.script

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
!: AUTO RESET
33

44
S: SUCCESS {"server": "Neo4j/3.2.3"}
5-
C: RUN "CALL dbms.cluster.routing.getRoutingTable({context})" {"context": {"name": "molly", "age": "1"}}
5+
C: RUN "CALL dbms.cluster.routing.getRoutingTable($context)" {"context": {"name": "molly", "age": "1"}}
66
PULL_ALL
77
S: SUCCESS {"fields": ["ttl", "servers"]}
88
RECORD [9223372036854775807, [{"addresses": ["127.0.0.1:9001"],"role": "WRITE"}, {"addresses": ["127.0.0.1:9002"], "role": "READ"},{"addresses": ["127.0.0.1:9001", "127.0.0.1:9002"], "role": "ROUTE"}]]

test/stub/scripts/non_router.script

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
!: AUTO INIT
22
!: AUTO RESET
33

4-
C: RUN "CALL dbms.cluster.routing.getRoutingTable({context})" {"context": {}}
4+
C: RUN "CALL dbms.cluster.routing.getRoutingTable($context)" {"context": {}}
55
PULL_ALL
66
S: FAILURE {"code": "Neo.ClientError.Procedure.ProcedureNotFound", "message": "Not a router"}
77
IGNORED

test/stub/scripts/router.script

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
!: AUTO INIT
22
!: AUTO RESET
33

4-
C: RUN "CALL dbms.cluster.routing.getRoutingTable({context})" {"context": {}}
4+
C: RUN "CALL dbms.cluster.routing.getRoutingTable($context)" {"context": {}}
55
PULL_ALL
66
S: SUCCESS {"fields": ["ttl", "servers"]}
77
RECORD [300, [{"role":"ROUTE","addresses":["127.0.0.1:9001","127.0.0.1:9002","127.0.0.1:9003"]},{"role":"READ","addresses":["127.0.0.1:9004","127.0.0.1:9005"]},{"role":"WRITE","addresses":["127.0.0.1:9006"]}]]

test/stub/scripts/router_no_readers.script

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
!: AUTO INIT
22
!: AUTO RESET
33

4-
C: RUN "CALL dbms.cluster.routing.getRoutingTable({context})" {"context": {}}
4+
C: RUN "CALL dbms.cluster.routing.getRoutingTable($context)" {"context": {}}
55
PULL_ALL
66
S: SUCCESS {"fields": ["ttl", "servers"]}
77
RECORD [300, [{"role":"ROUTE","addresses":["127.0.0.1:9001","127.0.0.1:9002","127.0.0.1:9003"]},{"role":"READ","addresses":[]},{"role":"WRITE","addresses":["127.0.0.1:9006"]}]]

test/stub/scripts/router_no_routers.script

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
!: AUTO INIT
22
!: AUTO RESET
33

4-
C: RUN "CALL dbms.cluster.routing.getRoutingTable({context})" {"context": {}}
4+
C: RUN "CALL dbms.cluster.routing.getRoutingTable($context)" {"context": {}}
55
PULL_ALL
66
S: SUCCESS {"fields": ["ttl", "servers"]}
77
RECORD [300, [{"role":"ROUTE","addresses":[]},{"role":"READ","addresses":["127.0.0.1:9004","127.0.0.1:9005"]},{"role":"WRITE","addresses":["127.0.0.1:9006"]}]]

0 commit comments

Comments
 (0)