We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7cbfb2 commit e301ef8Copy full SHA for e301ef8
pycue/opencue/wrappers/frame.py
@@ -152,6 +152,12 @@ def createDependencyOnFrame(self, frame):
152
timeout=Cuebot.Timeout)
153
return opencue.wrappers.depend.Depend(response.depend)
154
155
+ def dropDepends(self, target):
156
+ """Drops every dependency that is causing this frame not to run."""
157
+ self.stub.DropDepends(
158
+ job_pb2.FrameDropDependsRequest(frame=self.data, target=target),
159
+ timeout=Cuebot.Timeout)
160
+
161
def markAsWaiting(self):
162
"""Mark the frame as waiting, similar to drop depends. The frame will be
163
able to run even if the job has an external dependency."""
0 commit comments