I wonder if there’s a small bug somewhere related ...
# ui
h
I wonder if there’s a small bug somewhere related to tags. More in thread
I created a bunch of tags with a name and owner, but no description
Now, as I try to browse datasets with these tags I get the following error in the UI
Exception while fetching data (/dataset/schema/fields[3]/globalTags/tags[0]/tag) : java.lang.RuntimeException: Failed to retrieve entities of type Tag Exception while fetching data (/dataset/schema/fields[2]/globalTags/tags[0]/tag) : java.lang.RuntimeException: Failed to retrieve entities of type Tag Exception while fetching data (/dataset/schema/fields[1]/globalTags/tags[0]/tag) : java.lang.RuntimeException: Failed to retrieve entities of type Tag Exception while fetching data (/dataset/schema/fields[0]/globalTags/tags[0]/tag) : java.lang.RuntimeException: Failed to retrieve entities of type Tag
In the frontend-react container I see the snipper above
What caught my eye was
Cannot set field description of com.linkedin.tag.Tag to null
After re-ingesting the tags, now with a description, the UI loads again
g
ah i see
i bet the issue is with this line:
we need a null check here
if (tag.hasDescription()) { value.setDescription(..) }
thanks for raising this fredrik
h
np! Want to take care of it or should i?
g
i can take it
h
Thanks 🙏
g
m
This should be resolved now.