-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: temporarily remove an experimental feature for the next patch re…
…lease to prevent to lead to misunderstanding (#320)
- Loading branch information
1 parent
c05234a
commit 88c0c21
Showing
4 changed files
with
120 additions
and
249 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# frozen_string_literal: true | ||
|
||
class RedisClient | ||
class Cluster | ||
class PinningNode | ||
def initialize(client) | ||
@client = client | ||
end | ||
|
||
def call(*args, **kwargs, &block) | ||
@client.call(*args, **kwargs, &block) | ||
end | ||
|
||
def call_v(args, &block) | ||
@client.call_v(args, &block) | ||
end | ||
|
||
def call_once(*args, **kwargs, &block) | ||
@client.call_once(*args, **kwargs, &block) | ||
end | ||
|
||
def call_once_v(args, &block) | ||
@client.call_once_v(args, &block) | ||
end | ||
|
||
def blocking_call(timeout, *args, **kwargs, &block) | ||
@client.blocking_call(timeout, *args, **kwargs, &block) | ||
end | ||
|
||
def blocking_call_v(timeout, args, &block) | ||
@client.blocking_call_v(timeout, args, &block) | ||
end | ||
end | ||
end | ||
end |
Oops, something went wrong.