Skip to content

Commit

Permalink
add abort jobs functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
nikellepetrillo committed Jan 27, 2025
1 parent 6ac5a43 commit 5c9d16a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion scripts/firecloud_api/firecloud_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,6 @@ def get_active_submissions(self, method_config_name=None):
for submission in submissions:
# Check if submission is active (not Done, Aborted, or Failed)
if submission['status'] in ['Submitted', 'Running', 'Queued']:
# If method_config_name is specified, filter by it
if method_config_name:
if submission.get('methodConfigurationName') == method_config_name:
active_submissions.append(submission)
Expand Down

0 comments on commit 5c9d16a

Please sign in to comment.