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
Minimal bug found within JobService where it accesses pachyderm clients directly.
if not self.client.check_branch_exists(repo=pipeline_name, branch=pipeline_def["output_branch"]): self.client.pfs_client.create_branch(repo_name=pipeline_name, branch_name=pipeline_def["output_branch"])
self.client.pfs_client is a violation!!!
self.client.pfs_client
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
What is the current behaviour?
Minimal bug found within JobService where it accesses pachyderm clients directly.
What is the expected behaviour?
self.client.pfs_client
is a violation!!!The text was updated successfully, but these errors were encountered: