redis-cluster-client 0.3.12 → 0.3.13

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: '0890e2d621a219037cad3f57ff1f3ea459f274ae1027247360a644743b323e0c'
4
- data.tar.gz: 7225a3ba1fa71776c81deda0ff34aa4fc46eb0146aa63da8b9c3b5d9503a807f
3
+ metadata.gz: a99b3cb82de7749e845190ab4db8570408706ec659743925d9ebd648ac4af815
4
+ data.tar.gz: 6b12b2ac3844eaf2f9bce51767a84931d3a9b9abf2b235012ce0b4db483797fe
5
5
  SHA512:
6
- metadata.gz: 78d7cb40b48dae677dea264d7408546673414f927edd236ae5d091ba09fabc306465ffb3b2c77c39c475886d1e547f7f630ee112f193fceb4d39df4a6b94c75f
7
- data.tar.gz: 8990869249f008c27c7a795c6d73cd6b7d942eecce4ba0d9dd1d85b4b9ba65048f367b155be24cc8d8c90c4095fe67c1aa5133120504a433cd43f2b715802384
6
+ metadata.gz: d33869ee9bbb6ea3f71a90dd18752b5d5f9bd93652b61195f08f88eadfefe363380e1645303dfe1fad4a98992f14fea8e4277e3adadfc9d84f318712a1d59876
7
+ data.tar.gz: 7c1cc1f67ba80f363be78bcaf9b25f1c373356d5c03f9f15c2828f74a6500706311c633c2faec1194ab1d2d2bb1905c355f666820070a7d624730cf86698e576
@@ -47,9 +47,9 @@ class RedisClient
47
47
 
48
48
  min = DUMMY_LATENCY_NSEC
49
49
  MEASURE_ATTEMPT_COUNT.times do
50
- starting = Process.clock_gettime(Process::CLOCK_MONOTONIC, :nanosecond)
50
+ starting = Process.clock_gettime(Process::CLOCK_MONOTONIC, :microsecond)
51
51
  client.send(:call_once, 'PING')
52
- duration = Process.clock_gettime(Process::CLOCK_MONOTONIC, :nanosecond) - starting
52
+ duration = Process.clock_gettime(Process::CLOCK_MONOTONIC, :microsecond) - starting
53
53
  min = duration if duration < min
54
54
  end
55
55
 
@@ -200,7 +200,7 @@ class RedisClient
200
200
  def send_pipeline(client, pipeline)
201
201
  results = client.send(:ensure_connected, retryable: pipeline._retryable?) do |connection|
202
202
  commands = pipeline._commands
203
- ::RedisClient::Middlewares.call_pipelined(commands, client.config) do
203
+ client.instance_variable_get(:@middlewares).call_pipelined(commands, client.config) do
204
204
  connection.call_pipelined_aware_of_redirection(commands, pipeline._timeouts)
205
205
  end
206
206
  end
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redis-cluster-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.12
4
+ version: 0.3.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Taishi Kasuga
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-02 00:00:00.000000000 Z
11
+ date: 2022-10-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: redis-client
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.6'
19
+ version: '0.10'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: '0.6'
26
+ version: '0.10'
27
27
  description:
28
28
  email:
29
29
  - proxy0721@gmail.com