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
Good evening,
Having implemented a solution with a dummy heuristic, I have encountered some minor issues with client object.
orchestrator/python/main.py line 66: client = docker.from_env() should be client = docker.from_env().api
client = docker.from_env()
client = docker.from_env().api
client object should be passed to scaleUp and scaleDown functions as a parameter or declared as global
global
Please feel free to check my solution at my forked cna-hands.
P.S. I am very short on time to come up with a smart heuristic. If that happens I will commit my changes.
Kind regards, Katsaounis Stamatis
The text was updated successfully, but these errors were encountered:
Hey Stamatis,
Thank you for the fork / solution. I'll definitely check it out.
The first issue you describe can also be resolved using APIClient.
Thanks :). Fixed
BR, George
Sorry, something went wrong.
No branches or pull requests
Good evening,
Having implemented a solution with a dummy heuristic, I have encountered some minor issues with client object.
orchestrator/python/main.py line 66:
client = docker.from_env()
should beclient = docker.from_env().api
client object should be passed to scaleUp and scaleDown functions as a parameter or declared as
global
Please feel free to check my solution at my forked cna-hands.
P.S. I am very short on time to come up with a smart heuristic. If that happens I will commit my changes.
Kind regards,
Katsaounis Stamatis
The text was updated successfully, but these errors were encountered: