Skip to content
Snippets Groups Projects
Commit b1ad52f9 authored by Konstantinos's avatar Konstantinos
Browse files

Fix logging typo.

On branch dev_merge_middleware
Changes to be committed:
	modified:   src/main/java/eu/hbp/mip/controllers/GalaxyAPI.java
parent 8ebc04cf
No related branches found
No related tags found
1 merge request!8Dev merge middleware
......@@ -202,7 +202,7 @@ class GalaxyAPI {
final WorkflowDetails workflowDetails = workflowsClient.showWorkflow(matchingWorkflow.getId());
for (Map.Entry<String, WorkflowInputDefinition> entry : workflowDetails.getInputs().entrySet()) {
if(!(allJsonParams.containsKey(entry.getValue().getUuid()))) {
logger.warn("Find extra value with label:" + entry.getValue().getLabel() + "and uuid:" + entry.getValue().getUuid() + ", that is mandatory to run the workflow. The uuid will be automate add it with empty value in the parameters to run the workflow.");
logger.warn("Find extra value with label:" + entry.getValue().getLabel() + ", and uuid:" + entry.getValue().getUuid() + ", that is mandatory to run the workflow. The uuid will be automate add it with empty value in the parameters to run the workflow.");
allJsonParams.put(entry.getValue().getUuid(), "");
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment