SqlRegistry _apply_object doesn't take into account match with project_id when updating row.
https://github.com/feast-dev/feast/blob/master/sdk/python/feast/infra/registry/sql.py#L736
Wrong (as is):
.where(getattr(table.c, id_field_name) == name)
Correct:
.where(getattr(table.c, id_field_name) == name, table.c.project_id == project)