Skip to content

Commit a006e9a

Browse files
committed
Add missing parameter to PurgeInstances call
1 parent 424ff51 commit a006e9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

durabletask/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,4 +203,4 @@ def resume_orchestration(self, instance_id: str):
203203
def purge_orchestration(self, instance_id: str, recursive: bool = True):
204204
req = pb.PurgeInstancesRequest(instanceId=instance_id, recursive=recursive)
205205
self._logger.info(f"Purging instance '{instance_id}'.")
206-
self._stub.PurgeInstances()
206+
self._stub.PurgeInstances(req)

0 commit comments

Comments
 (0)