Explorar o código

HUE-3294 [metadata] Avoid error when search returns the HDFS root directory

Romain Rigaux %!s(int64=9) %!d(string=hai) anos
pai
achega
c9034b1b07
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      desktop/libs/metadata/src/metadata/navigator_api.py

+ 1 - 1
desktop/libs/metadata/src/metadata/navigator_api.py

@@ -244,7 +244,7 @@ def _augment_highlighting(query_s, records):
   for record in records:
     name = record.get('originalName', '')
     record['hue_description'] = ''
-    record['hue_name'] = (record.get('parentPath', '').replace('/', '.') + '.').lstrip('.')
+    record['hue_name'] = (record.get('parentPath', '').replace('/', '.') + '.').lstrip('.') if record.get('parentPath') else ''
 
     for term in ts:
       name = _highlight(term, name)