Bug #2049
CN Create method fails due to incorrect use of NodeList
Status:
Closed
Priority:
Urgent
Assignee:
Ben Leinfelder
Category:
Metacat
Target version:
Start date:
2011-11-22
Due date:
% Done:
100%
Milestone:
CCI-1.0.0
Product Version:
*
Story Points:
Sprint:
Description
CNodeService.java line 967 reads:
List nodes = (List) cn.listNodes();
cn.listNodes returns a NodeList object, should read:
NodeList nodeList = cn.listNodes();
List nodes = nodeList.getNodeList();
History
#1 Updated by Ben Leinfelder about 13 years ago
- Assignee changed from Chris Jones to Ben Leinfelder
#2 Updated by Ben Leinfelder about 13 years ago
- Status changed from New to Closed
updated Metacat source