Issue Details (XML | Word | Printable)

Key: ESB-520
Type: Bug Bug
Status: Resolved Resolved
Resolution: Fixed
Priority: Major Major
Assignee: Guillaume Nodet
Reporter: david beaurpere
Votes: 0
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
FUSE ESB

smx4 shell: removeUrl doesn't seem to be working

Created: 11/Dec/08 09:12 AM   Updated: 12/Dec/08 06:18 PM
Component/s: servicemix-xmpp
Affects Version/s: 4.0.0.3-fuse
Fix Version/s: 4.0.0.4-fuse

Issue Links:
Duplicates
 


 Description  « Hide
same thing for the corresponding method from the FeaturService API.

this is something we noticed because the cloudmix agent for smx4 relies on it to act on provisioning instructions



 All   Comments   Change History      Sort Order: Ascending order - Click to sort in descending order
Paul Taylor added a comment - 12/Dec/08 07:28 AM
FeaturesServiceImpl.java removeRepository() was changed to look at the values in the map rather than the keys.

public void removeRepository(URI uri) {
if (repositories.values().contains(uri)) { internalRemoveRepository(uri); saveState(); }

Should be

if (repositories.containsKey(uri)) { internalRemoveRepository(uri); saveState(); } }



Guillaume Nodet added a comment - 12/Dec/08 06:18 PM
Sending 1.0.x/gshell/gshell-features/src/main/java/org/apache/servicemix/gshell/features/internal/FeaturesServiceImpl.java
Transmitting file data .
Committed revision 64579.