Skip to content

Commit

Permalink
Fix.
Browse files Browse the repository at this point in the history
Did not handle the case on flower controller that the validation datasets maybe empty.
  • Loading branch information
KFilippopolitis authored Jul 18, 2024
1 parent 919a99b commit 0fd9d5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exareme2/controller/services/flower/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ async def exec_algorithm(self, algorithm_name, algorithm_request_dto):
] = self.worker_landscape_aggregator.get_csv_paths_per_worker_id(
algorithm_request_dto.inputdata.data_model,
algorithm_request_dto.inputdata.datasets
+ algorithm_request_dto.inputdata.validation_datasets,
+ algorithm_request_dto.inputdata.validation_datasets if algorithm_request_dto.inputdata.validation_datasets else [],
)
workers_info = [
self.worker_landscape_aggregator.get_worker_info(worker_id)
Expand Down

0 comments on commit 0fd9d5c

Please sign in to comment.