优化缓存任务Key状态增加执行中状态

This commit is contained in:
GoEdgeLab
2022-06-15 15:18:22 +08:00
parent c729b79316
commit ce604e5f53
2 changed files with 20 additions and 9 deletions

View File

@@ -9,7 +9,8 @@ message HTTPCacheTaskKey {
string key = 3;
string type = 4;
string keyType = 5;
bool isDone = 6;
bool isDone = 6; // 是否已完成
bool isDoing = 9; // 是否执行中
bytes errorsJSON = 7;
int64 nodeClusterId = 8;
}