Skip to content

Commit

Permalink
Update worker not found error message
Browse files Browse the repository at this point in the history
Co-authored-by: Miyuru Dayarathna <[email protected]>
  • Loading branch information
muthumala19 and miyurud committed Jan 12, 2025
1 parent 26f9728 commit c36b7b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/Utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1152,7 +1152,7 @@ void Utils::assignPartitionToWorker(int graphId, int partitionIndex, string hos
std::vector<std::vector<std::pair<std::string, std::string>>> results = sqlite->runSelect(workerSearchQuery);

if (results.empty()) {
util_logger.error("Worker not found in database: " + workerHost);
util_logger.error("Worker not found : " + workerHost);
throw std::runtime_error("Worker not found");
}

Expand Down

0 comments on commit c36b7b4

Please sign in to comment.