bbovenzi commented on code in PR #25175:
URL: https://github.com/apache/airflow/pull/25175#discussion_r926820799


##########
airflow/www/views.py:
##########
@@ -5330,6 +5330,14 @@ def _calculate_graph(self):
 
     @staticmethod
     def _node_dict(node_id, label, node_class):
+        def trunc_uri(val):
+            if len(val) > 25:
+                return val[0:23] + '...'

Review Comment:
   As per another conversation, let's just show the whole URI for now so a user 
has the whole context and worry about shortening it later.



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