Actions
Bug #27321
openPlugin doesn't show anything
Status:
Pending release
Priority:
1 (highest)
Assignee:
Target version:
Pull Request:
Severity:
UX impact:
User visibility:
Effort required:
Priority:
0
Name check:
To do
Fix check:
To do
Regression:
No
Description
It doesn't find the nodes
it seems the nodeFactRepo call ReadExternalReports.scala doesn't return what is expected
definition is
def get( nodeId: NodeId )(implicit qc: QueryContext, status: SelectNodeStatus = SelectNodeStatus.Any): IOResult[Option[CoreNodeFact]]
usage is
optNode <- nodeFactRepo.get(nodeId).toBox
node <- optNode match {
case None => Failure(s"The node with ID '${nodeId}' was not found, we can't add external information")
case Some(n) => Full(n)
}
Files
Actions