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
Example:
>>> from opa_client import OpaClient >>> OpaClient( ... host='localhost', ... port=5000, ... timeout=10.0, ... retries=5, ... ) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/haoli/.pyenv/versions/tower-release_4.6/lib/python3.11/site-packages/opa_client/opa.py", line 43, in __init__ super().__init__(*args, **kwargs) TypeError: BaseClient.__init__() got an unexpected keyword argument 'retries'
Further more it seems that in the BaseClient.init() self.timeout and self.retries are being hardcoded https://github.com/Turall/OPA-python-client/blob/master/opa_client/base.py#L44-L45
self.timeout
self.retries
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Example:
Further more it seems that in the BaseClient.init()
self.timeout
andself.retries
are being hardcoded https://github.com/Turall/OPA-python-client/blob/master/opa_client/base.py#L44-L45The text was updated successfully, but these errors were encountered: