Irina Tarnavski 2022-01-03 14:31:05 -08:00
Родитель 7902f41cbc 2b25c743f3
Коммит 28f8ff9af1
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -308,7 +308,7 @@ public class AlertService {
private String getTemplate(Map<String, String> mailTemplates, String templateName) {
String template = mailTemplates.get(templateName);
if (template.isEmpty()) {
if (template.isBlank()) {
throw new TemplateNotFoundException(String.format("Template [%s] was not found. " +
"Please check ConfigurableAppSetting container in CosmosDB for [%s] parameter.",
templateName, AppSettingsType.MAIL_TEMPLATES.toString()));