Example #1
0
 private static Set<String> getKeyListFromId(String corruptId) {
   Set<String> keyLists = new HashSet<>();
   keyLists.add(ConfigUtils.masterStormCodeKey(corruptId));
   keyLists.add(ConfigUtils.masterStormConfKey(corruptId));
   if (!ConfigUtils.isLocalMode(conf)) {
     ConfigUtils.masterStormJarKey(corruptId);
   }
   return keyLists;
 }