lb:字段标识库 定时更新插件
This commit is contained in:
parent
1f33c8977f
commit
a4f554db6b
@ -40,11 +40,10 @@ public class FieldKeyStoreUpdateTaskPlugin extends AbstractTask implements Plugi
|
||||
String appkeys = (String) map.get("appkeys");// 应用标识拼接
|
||||
if (YEM.isEmpty(bizcloudkey) || YEM.isEmpty(appkeys))return;
|
||||
String[] appkeyArray = appkeys.split(",");
|
||||
for (int i = 0; i < appkeyArray.length; i++) {
|
||||
String appkey = appkeyArray[i];
|
||||
for (String appkey : appkeyArray) {
|
||||
// 更新数据
|
||||
try {
|
||||
updateFieldKeyStore(bizcloudkey,appkey);
|
||||
updateFieldKeyStore(bizcloudkey, appkey);
|
||||
} catch (Throwable e) {
|
||||
throw new KDException(e.getMessage());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user