We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In poolboy:child_spec/3, poolboy:start/2 and poolboy:start_link/2, WorkerArgs is specified as proplists:proplist(). For example:
poolboy:child_spec/3
poolboy:start/2
poolboy:start_link/2
proplists:proplist()
-spec start_link(PoolArgs :: proplists:proplist(), WorkerArgs:: proplists:proplist()) -> start_ret().
However, this value is passed directly to the worker's start_link function, and it doesn't have to be a proplist.
start_link
This is causing dialyzer to issue warnings for my project.
The text was updated successfully, but these errors were encountered:
Allow worker arguments of any type
cce954a
- devinus#95 - devinus#136
Duplicate of #95
Sorry, something went wrong.
No branches or pull requests
In
poolboy:child_spec/3
,poolboy:start/2
andpoolboy:start_link/2
, WorkerArgs is specified asproplists:proplist()
. For example:However, this value is passed directly to the worker's
start_link
function, and it doesn't have to be a proplist.This is causing dialyzer to issue warnings for my project.
The text was updated successfully, but these errors were encountered: