Skip to content

Commit b1cd665

Browse files
author
Sergio García Prado
committed
Merge branch 'issue-51-implement-aiopg-saga-execution-repository' into issue-53-simplify-sagastepstatus
2 parents 527d053 + 33026bd commit b1cd665

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)