diff --git a/neptune/new/internal/backends/hosted_neptune_backend.py b/neptune/new/internal/backends/hosted_neptune_backend.py index 5020f137f..ddaed8ad0 100644 --- a/neptune/new/internal/backends/hosted_neptune_backend.py +++ b/neptune/new/internal/backends/hosted_neptune_backend.py @@ -344,7 +344,8 @@ def to_attribute(attr) -> Attribute: accepted_attributes = [attr for attr in run.attributes if attr.type in attribute_type_names] # Notify about ignored attrs - ignored_attributes = set(run.attributes) - set(accepted_attributes) + ignored_attributes = \ + set(attr.type for attr in run.attributes) - set(attr.type for attr in accepted_attributes) if ignored_attributes: _logger.warning( f"Ignored following attributes (unknown type): {ignored_attributes}.\n"