-
Notifications
You must be signed in to change notification settings - Fork 12
Fix broken encapsulation #32
Copy link
Copy link
Open
Labels
Description
What is the current behaviour?
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"])What is the expected behaviour?
self.client.pfs_client is a violation!!!
Reactions are currently unavailable