-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FIX #28 #29
base: master
Are you sure you want to change the base?
FIX #28 #29
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,6 +38,8 @@ init(Args) -> | |
|
||
{ok, #state{conn=Conn}}. | ||
|
||
query(full, _Commands) -> | ||
{error, retry}; | ||
Comment on lines
+41
to
+42
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Actually, Instead, when the pool doesn't have workers available, we get an Refresh mappings isn't necessary in this case. A retry without refresh mappings would suffice. We have done it in the Nordix fork. |
||
query(Worker, Commands) -> | ||
gen_server:call(Worker, {'query', Commands}). | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think there is an issue here?
~p