pierrejeambrun commented on code in PR #47482:
URL: https://github.com/apache/airflow/pull/47482#discussion_r1991273130
##########
airflow/api_fastapi/core_api/routes/public/backfills.py:
##########
@@ -149,7 +153,10 @@ def unpause_backfill(backfill_id, session: SessionDep) ->
BackfillResponse:
status.HTTP_409_CONFLICT,
]
),
- dependencies=[Depends(action_logging())],
+ dependencies=[
+ Depends(action_logging()),
Review Comment:
That's arbitrary, depending on what we want to log or not. Here is idea I
assume was to only log 'mutations' -> create / delete / update.
I think in the near future we need to move this dependency to the public/ui
router level so every endpoint access are logged by default.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]