neo4j-ruby-driver 5.7.0.alpha.3 → 5.7.0.alpha.4
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6e0343454cd9cf98cab65814233386d198abbd6644152af5b0e514f2e2d152ea
|
|
4
|
+
data.tar.gz: fe48e618ebbcacd6148f31055367b5e6feb328a24dca43a6769f0261c9de7a68
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3d8c347a0cee9ae197dfca6afd2deaed9f144a72df354a18f3298c052c75c6a627eae062993f638b67cace9b4195938845e6fb1917f9c9f034b5a349e2c0b4dd
|
|
7
|
+
data.tar.gz: 0c87b4ba135c8ad6626ac0d0fc8678ccc7e255860a163f4d0a862a62b2b6795d9cffab01fdd5c803df93d0ca69007cfb0e27eb77455477789e617e6dcf59a514
|
|
@@ -10,6 +10,7 @@ module Neo4j::Driver
|
|
|
10
10
|
|
|
11
11
|
def initialize(address, connector, logger)
|
|
12
12
|
@attributes = Connection::ChannelAttributes.new
|
|
13
|
+
@attributes[:server_address] = address
|
|
13
14
|
@stream = Connection::Stream.new(connect_to_io_socket(connector, address))
|
|
14
15
|
@stream.write(Connection::BoltProtocolUtil.handshake_buf)
|
|
15
16
|
@stream.flush
|
|
@@ -20,7 +20,7 @@ module Neo4j::Driver
|
|
|
20
20
|
end
|
|
21
21
|
|
|
22
22
|
def extract_summary(query, connection, result_available_after, metadata)
|
|
23
|
-
server_info = Summary::InternalServerInfo.new(connection.server_agent, connection.server_address, connection.server_version, connection.protocol.version)
|
|
23
|
+
server_info = Summary::InternalServerInfo.new(connection.server_agent, connection.server_address.to_s, connection.server_version, connection.protocol.version)
|
|
24
24
|
db_info = self.class.extract_database_info(metadata)
|
|
25
25
|
Summary::InternalResultSummary.new(
|
|
26
26
|
query, server_info, db_info, self.class.extract_query_type(metadata), self.class.extract_counters(metadata),
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: neo4j-ruby-driver
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.7.0.alpha.
|
|
4
|
+
version: 5.7.0.alpha.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Heinrich Klobuczek
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2025-01-
|
|
10
|
+
date: 2025-01-14 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: activesupport
|