We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09ed6c3 commit 11e7b75Copy full SHA for 11e7b75
dynatrace_extension/sdk/status.py
@@ -115,7 +115,7 @@ def __eq__(self, other):
115
return isinstance(other, EndpointStatus) and self.__dict__ == other.__dict__
116
117
def __hash__(self):
118
- return hash((self.endpoint, self.status, self.message))
+ return hash(tuple(sorted(self.__dict__.items())))
119
120
121
class EndpointStatuses:
0 commit comments