jason810496 commented on code in PR #54308:
URL: https://github.com/apache/airflow/pull/54308#discussion_r2275577505
##########
airflow-core/src/airflow/api_fastapi/core_api/routes/public/hitl.py:
##########
@@ -119,6 +119,18 @@ def _update_hitl_detail(
"and is not allowed to write again.",
)
+ user_id = user.get_id()
+
+ if hitl_detail_model.respondents:
+ if isinstance(user_id, int):
+ # FabAuthManager (ab_user) store user id as integer, but common
interface is string type
+ user_id = str(user_id)
Review Comment:
```suggestion
# FabAuthManager (ab_user) store user id as integer, but common
interface is string type
user_id = str(user.get_id())
if hitl_detail_model.respondents:
```
##########
airflow-core/docs/img/airflow_erd.svg:
##########
Review Comment:
I can see `respondents` column in new diagram, maybe there is some cache
problem on browser?
<img width="132" height="176" alt="Screenshot 2025-08-14 at 1 59 00 PM"
src="https://github.com/user-attachments/assets/97a30782-4dc5-453d-9c06-61419101b08e"
/>
--
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]