# HG changeset patch # User Ed Swartz # Date 1270758104 18000 # Node ID 528b9854466005814e6a0344ed1fcd9d89aaa0fc # Parent 9842cb2130fd7262aca383069ca8f46d0c4f9891 Connected service properties need to be propagated just as their statuses are diff -r 9842cb2130fd -r 528b98544660 connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/internal/ServiceTester.java --- a/connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/internal/ServiceTester.java Thu Apr 08 15:04:26 2010 -0500 +++ b/connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/internal/ServiceTester.java Thu Apr 08 15:21:44 2010 -0500 @@ -42,7 +42,7 @@ @Override public void run() { for (Set connectedServices : connectedServicesSets) { - // test first in the set and set status for others + // test first in the set and set status and properties for others Iterator iterator = connectedServices.iterator(); AbstractConnectedService2 toTest = iterator.next(); toTest.testStatus(); @@ -50,6 +50,7 @@ while (iterator.hasNext()) { AbstractConnectedService2 next = iterator.next(); next.setStatus((Status) status); + next.getProperties().putAll(toTest.getProperties()); } } unregisterThread(this);