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
connect
Model
max_frame_size
Based on the documentation (1), one of allowed parameters is max_frame_size. After providing it as keyword, I got an error
>>> from juju.model import Model >>> from juju.loop import run >>> model = Model() >>> run(model.connect(model_name="openstack", max_frame_size=19491127)) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/jujumanage/jujubackupall_packages/juju/loop.py", line 38, in run raise task.exception() File "/home/jujumanage/jujubackupall_packages/juju/model.py", line 547, in connect await self._connector.connect_model(model_name, **kwargs) TypeError: connect_model() got an unexpected keyword argument 'max_frame_size' >>> model = Model(max_frame_size=19491127) >>> run(model.connect("openstack")) >>>
The text was updated successfully, but these errors were encountered:
Patching some missing kwargs
cc2b7d5
Fixes juju#524
Patch some missing arguments in python-libjuju
Sorry, something went wrong.
Merge pull request #527 from cderici/master
8a03711
#527 Fixes #524
Successfully merging a pull request may close this issue.
Based on the documentation (1), one of allowed parameters is
max_frame_size
. After providing it as keyword, I got an errorThe text was updated successfully, but these errors were encountered: