fix
This commit is contained in:
parent
c113a26e59
commit
e1380c172a
1 changed files with 1 additions and 4 deletions
|
|
@ -89,10 +89,7 @@ public class ConfigExecutorService {
|
|||
|
||||
@SuppressWarnings("unchecked")
|
||||
Map<String, String> details = (Map<String, String>) responseMap.get("details");
|
||||
String detailsStr = details.entrySet()
|
||||
.stream()
|
||||
.map(entry -> entry.getKey() + " : " + entry.getValue())
|
||||
.collect(Collectors.joining("\n"));
|
||||
String detailsStr = String.join("\n", details.values());
|
||||
throw new ConfigExecutorException(detailsStr);
|
||||
}
|
||||
else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue