Skip to content

ASA Endpoint Fix#5128

Open
brettedw wants to merge 3 commits intomainfrom
task/asa-backend-fix
Open

ASA Endpoint Fix#5128
brettedw wants to merge 3 commits intomainfrom
task/asa-backend-fix

Conversation

@brettedw
Copy link
Collaborator

@brettedw brettedw commented Feb 13, 2026

AdvisoryZoneStatus.fuel_type_raster_id == most_recent_raster_subquery happening outside the left join was basically nullifying the left join and resulting in missing zones in the response. The result was any zone that had no advisory or warning pixels in it, would not show up in the tabs.

Added test for this case

Test Links:

Landing Page
MoreCast
Percentile Calculator
C-Haines
FireCalc
FireCalc bookmark
Auto Spatial Advisory (ASA)
HFI Calculator
SFMS Insights
Fire Watch

Comment on lines -855 to 864
select(FuelTypeRaster.id)
.where(
FuelTypeRaster.year
== select(func.max(FuelTypeRaster.year)).where(
FuelTypeRaster.id.in_(
select(AdvisoryZoneStatus.fuel_type_raster_id).where(
AdvisoryZoneStatus.run_parameters == run_parameter_id
)
)
)
.join(
AdvisoryZoneStatus,
AdvisoryZoneStatus.fuel_type_raster_id == FuelTypeRaster.id,
)
.where(AdvisoryZoneStatus.run_parameters == run_parameter_id)
.order_by(FuelTypeRaster.year.desc())
.limit(1)
.scalar_subquery()
)
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Subquery change was to avoid SA warning

SAWarning: implicitly coercing SELECT object to scalar subquery; please use the .scalar_subquery() method to produce a scalar subquery. FuelTypeRaster.year

@codecov
Copy link

codecov bot commented Feb 13, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 69.81%. Comparing base (d6d2d7e) to head (f3de578).

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #5128   +/-   ##
=======================================
  Coverage   69.81%   69.81%           
=======================================
  Files         410      410           
  Lines       17856    17856           
  Branches     2000     2000           
=======================================
  Hits        12466    12466           
  Misses       4765     4765           
  Partials      625      625           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@sonarqubecloud
Copy link

@brettedw brettedw requested review from conbrad and dgboss February 13, 2026 23:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant