Skip to content

Commit b165ab2

Browse files
apathorNorthover
authored andcommitted
Fix updates to DSF endpoints. (#124)
1 parent 0802953 commit b165ab2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dyn/tm/services/dsf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3099,7 +3099,7 @@ def _update(self, api_args):
30993099
full_list = self._monitor.endpoints
31003100
args_list = []
31013101
for endpoint in full_list:
3102-
if id(endpoint) == id(self):
3102+
if endpoint.address == self.address:
31033103
args_list.append(api_args)
31043104
else:
31053105
args_list.append(endpoint._json)

0 commit comments

Comments
 (0)