Skip to content
Snippets Groups Projects
Commit b03745e5 authored by Leonardo's avatar Leonardo
Browse files

chore: more ample error catching for query

parent e9ab5ca7
No related branches found
No related tags found
No related merge requests found
Pipeline #145438 passed
......@@ -175,9 +175,9 @@ export const queryServiceReader = async (frontendPublisher: RabbitMqBroker, mlPu
publisher.publishTranslationResultToFrontend(query);
for (let i = 0; i < ss.dbConnections.length; i++) {
const result = await queryService(ss.dbConnections[i], cypher);
try {
const result = await queryService(ss.dbConnections[i], cypher);
// Cache nodeCounts such that we can display differentiation for each query
await ums.updateQuery(headers.message.sessionData.userID, message.saveStateID, {
...activeQueryInfo,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment