Skip to content

Commit

Permalink
Merge branch 'main' into feat/asa-per-scene
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaraphael committed Nov 21, 2024
2 parents 3b0e8cc + 20ec7c7 commit 5ccbf7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cerulean_cloud/cloud_function_ais_analysis/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ async def handle_asa_request(request):
)
if len(ranked_sources) > 0:
ranked_sources = ranked_sources.sort_values(
"coincidence_score", ascending=False
"collated_score", ascending=False
).reset_index(drop=True)
async with db_client.session.begin():
for idx, source_row in ranked_sources.iloc[:5].iterrows():
Expand Down

0 comments on commit 5ccbf7b

Please sign in to comment.