-
Notifications
You must be signed in to change notification settings - Fork 12
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
Brewtils Plugin requires #500
Conversation
brewtils/plugin.py
Outdated
def get_system_dependency(self, require, timeout=300): | ||
wait_time = 0.1 | ||
while timeout > 0: | ||
system = self._ez_client.find_unique_system(name=require) |
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 have to check, but if we have access to the Garden name of the local plugin, we should pass that forward as a filter criteria.
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.
local=True seems to be ok
brewtils/plugin.py
Outdated
and any("RUNNING" == instance.status for instance in system.instances) | ||
): | ||
return system | ||
self._wait() |
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.
you don't give it the wait time
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.
Now using the wait time
…tils into plugin-requires
No description provided.