Github user veteranbv commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2715#discussion_r189410920
--- Diff:
nifi-nar-bundles/nifi-language-translation-bundle/nifi-yandex-processors/src/main/java/org/apache/nifi/processors/yandex/util/Languages.java
---
@@ -25,6 +25,7 @@
private static final Map<String, String> languageAbbreviationMap = new
HashMap<>();
static {
+ languageAbbreviationMap.put("", "blank");
--- End diff --
@joewitt I took a little different route by deleting the blank reference in
this file and updating the validator logic
---