ashb commented on code in PR #27994:
URL: https://github.com/apache/airflow/pull/27994#discussion_r1035790127


##########
airflow/www/decorators.py:
##########
@@ -57,6 +95,10 @@ def wrapper(*args, **kwargs):
                     for k, v in chain(request.values.items(multi=True), 
request.view_args.items())
                     if k not in fields_skip_logging
                 ]
+                if event and "variable." in event:

Review Comment:
   Maybe? (I'm not sure the format of the event var for this)
   ```suggestion
                   if event and event.startswith("variable."):
   ```
   
   Similar for connection I'd assume.



-- 
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]

Reply via email to