From cb96d3f40871733cade704d9524c57bf396daba7 Mon Sep 17 00:00:00 2001 From: Marco van Dijk Date: Tue, 9 Aug 2022 18:00:11 +0200 Subject: [PATCH] add better message for orchs without a target uri --- client/src/routes/orchTester.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/routes/orchTester.js b/client/src/routes/orchTester.js index ad94d05..5416dd7 100644 --- a/client/src/routes/orchTester.js +++ b/client/src/routes/orchTester.js @@ -242,7 +242,7 @@ const pingNextOrch = async function () { if (!currentPool.length) { refreshPool(); } let currentOrch = currentPool.splice(0, 1)[0]; if (!currentOrch.id || !currentOrch.target) { - console.log("err: \n", currentOrch); + console.log("Skipping Orchestrator with malformed data: ", currentOrch); return; } await testOrchestrator(currentOrch.id, currentOrch.target);