Skip to content

Commit

Permalink
Oops again. D:
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaraphael committed Nov 8, 2023
1 parent 34429c4 commit f558f4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cerulean_cloud/cloud_run_orchestrator/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ async def _orchestrate(
)
orchestrator_run = await db_client.add_orchestrator(
start_time,
start_time, # XXX This should be updated at end of orchestrator run
start_time,
ntiles,
noffsettiles,
os.getenv("GIT_HASH"),
Expand Down
2 changes: 1 addition & 1 deletion cerulean_cloud/database_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ async def deactivate_stale_slicks_from_scene_id(self, scene_id):
.where(
and_(
db.Sentinel1Grd.scene_id == scene_id,
db.Slick.active is True,
db.Slick.active == True, # noqa
)
)
)
Expand Down

0 comments on commit f558f4f

Please sign in to comment.