Skip to content

Commit 6072046

Browse files
author
Sergio García Prado
committed
Merge remote-tracking branch 'origin/0.7.1' into 0.8.0
2 parents 28a6bf8 + f0ef877 commit 6072046

File tree

1 file changed

+1
-1
lines changed
  • packages/core/minos-microservice-aggregate/minos/aggregate/deltas

1 file changed

+1
-1
lines changed

packages/core/minos-microservice-aggregate/minos/aggregate/deltas/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def simplified_name(self) -> str:
6464

6565
def __lt__(self, other: Any) -> bool:
6666
return isinstance(other, type(self)) and (
67-
(self.name == other.name and self.version < other.version) or self.created_at < other.created_at
67+
(self.uuid == other.uuid and self.version < other.version) or (self.created_at < other.created_at)
6868
)
6969

7070
def __getitem__(self, item: str) -> Any:

0 commit comments

Comments
 (0)