Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Keep index of id
Browse files Browse the repository at this point in the history
jaymedina committed Mar 19, 2024
1 parent d5ceab6 commit a8ec7da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/orca/services/synapse/ops.py
Original file line number Diff line number Diff line change
@@ -97,7 +97,7 @@ def get_submissions_with_status(
f"select id from {submission_view} where status = '{submission_status}'"
)

submission_ids = query_results.asDataFrame().tolist()
submission_ids = query_results.asDataFrame()["id"].tolist()

return submission_ids

0 comments on commit a8ec7da

Please sign in to comment.