|
|
@ -39,6 +39,9 @@ public class NotifyUtil { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void notify(Long taskId,Long clusterId) { |
|
|
public void notify(Long taskId,Long clusterId) { |
|
|
|
|
|
if (taskId == null || clusterId == null) { |
|
|
|
|
|
return; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
// 构建 Redis 缓存 key(按 taskId 唯一)
|
|
|
// 构建 Redis 缓存 key(按 taskId 唯一)
|
|
|
String cacheKey = WARN_LOCK_KEY_PREFIX + taskId; |
|
|
String cacheKey = WARN_LOCK_KEY_PREFIX + taskId; |
|
|
|