This commit is contained in:
Rainy-Autumn 2024-06-07 12:46:53 +08:00
parent 86119ca320
commit 2102dd4134
2 changed files with 3 additions and 3 deletions

View File

@ -166,7 +166,7 @@ async def delete_task(request_data: dict, db=Depends(get_mongo_db), _: dict = De
for task_id in task_ids:
obj_ids.append(ObjectId(task_id))
redis_key.append("TaskInfo:" + task_id)
redis_con.delete(*redis_key)
await redis_con.delete(*redis_key)
# Delete the SensitiveRule documents based on the provided IDs
result = await db.task.delete_many({"_id": {"$in": obj_ids}})
@ -239,7 +239,7 @@ async def create_scan_task(request_data, id, targetList, redis_con):
try:
request_data["id"] = str(id)
if request_data['allNode']:
request_data["node"] = get_redis_online_data(redis_con)
request_data["node"] = await get_redis_online_data(redis_con)
keys_to_delete = [
f"TaskInfo:tmp:{id}",

View File

@ -8,7 +8,7 @@ import string
import yaml
VERSION = "1.0"
VERSION = "1.1"
UPDATEURL = "http://update.scope-sentry.top"
REMOTE_REPO_URL = "https://github.com/Autumn-27/ScopeSentry.git"
SECRET_KEY = "ScopeSentry-15847412364125411"