You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a HashMap<String, Thread> conceptClusterProcesses in ConceptClusterService that will be populated with running/finished processes of createSpecificGraphsInNeo4j. This map is used to check for said processes from ConceptClusterApiDelegateImpl (and therefore the frontend).
However, when the backend terminates for any reason this map won't be restored at the moment and the information is lost. But fixing this shouldn't be a problem since the clusters are stored in Neo4j and we could get the information about what clusters are present from there.
The text was updated successfully, but these errors were encountered:
There is a
HashMap<String, Thread> conceptClusterProcesses
inConceptClusterService
that will be populated with running/finished processes ofcreateSpecificGraphsInNeo4j
. This map is used to check for said processes fromConceptClusterApiDelegateImpl
(and therefore thefrontend
).However, when the backend terminates for any reason this map won't be restored at the moment and the information is lost. But fixing this shouldn't be a problem since the clusters are stored in Neo4j and we could get the information about what clusters are present from there.
The text was updated successfully, but these errors were encountered: