neo4j-ruby-driver 0.4.1 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ffi/neo4j/driver/internal/network_session.rb +2 -2
- data/lib/neo4j/driver/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d2ac2597035dbaec401dedd95824f8ac615b939013555ebb8bc5911b2271a87f
|
4
|
+
data.tar.gz: 4d744afe851264c2e9f7c5497ea9bfc6a17717b146ccdab935ffe9f1afce2d05
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 61405f251e82b0da093dd6bb9b4b6cd4d27b01098bc99076c2e29c26936c476bdb67f7ab2752184d54d2a7108a2d1a87482d8e004e39ff20f0d53909bef3ca2e
|
7
|
+
data.tar.gz: 07d3aa9c85e273ae462da8854d8be86019b03794af6001c25c9f0845544507a665986bd19ad96a2267b7f2ebb75f99701d6febf610a233ad96f7cfdd93c37276
|
@@ -84,7 +84,7 @@ module Neo4j
|
|
84
84
|
end
|
85
85
|
end
|
86
86
|
|
87
|
-
def acquire_connection(mode
|
87
|
+
def acquire_connection(mode)
|
88
88
|
# make sure previous result is fully consumed and connection is released back to the pool
|
89
89
|
@result&.failure
|
90
90
|
|
@@ -94,7 +94,7 @@ module Neo4j
|
|
94
94
|
# 3) previous result failed and error has been consumed
|
95
95
|
|
96
96
|
raise Exceptions::IllegalStateException, 'Existing open connection detected' if @connection&.open?
|
97
|
-
@connection = @connection_provider.acquire_connection(
|
97
|
+
@connection = @connection_provider.acquire_connection(mode)
|
98
98
|
end
|
99
99
|
|
100
100
|
def close_transaction_and_release_connection
|
data/lib/neo4j/driver/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: neo4j-ruby-driver
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Heinrich Klobuczek
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-05-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|