Skip to content

Commit

Permalink
Fix updates to DSF endpoints. (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
apathor authored and Northover committed Jan 2, 2018
1 parent 0802953 commit b165ab2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dyn/tm/services/dsf.py
Original file line number Diff line number Diff line change
Expand Up @@ -3099,7 +3099,7 @@ def _update(self, api_args):
full_list = self._monitor.endpoints
args_list = []
for endpoint in full_list:
if id(endpoint) == id(self):
if endpoint.address == self.address:
args_list.append(api_args)
else:
args_list.append(endpoint._json)
Expand Down

0 comments on commit b165ab2

Please sign in to comment.