uranusjr commented on code in PR #34051: URL: https://github.com/apache/airflow/pull/34051#discussion_r1315673148
########## airflow/models/log.py: ########## @@ -37,6 +37,7 @@ class Log(Base): event = Column(String(30)) execution_date = Column(UtcDateTime) owner = Column(String(500)) + friendly_owner = Column(String(500)) Review Comment: I don’t particularly like this name… maybe something like `owner_display_name`? ########## airflow/models/log.py: ########## @@ -37,6 +37,7 @@ class Log(Base): event = Column(String(30)) execution_date = Column(UtcDateTime) owner = Column(String(500)) + friendly_owner = Column(String(500)) Review Comment: I don’t particularly like this name… maybe something like `owner_display_name`? -- 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: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org