liuyiyang01 commited on
Commit
45248e6
·
1 Parent(s): 6964b3e

more frequent status check

Browse files
Files changed (1) hide show
  1. app_utils.py +4 -3
app_utils.py CHANGED
@@ -223,10 +223,11 @@ def stream_simulation_results(result_folder: str, task_id: str, request: gr.Requ
223
 
224
  while max_time > 0:
225
  max_time -= 1
226
- current_time = time.time()
227
 
228
  # 定期检查后端状态
229
- if current_time - last_status_check > status_check_interval:
 
230
  status = get_task_status(task_id)
231
  print(str(request.session_hash), "status: ", status)
232
  if status.get("status") == "completed":
@@ -239,7 +240,7 @@ def stream_simulation_results(result_folder: str, task_id: str, request: gr.Requ
239
  raise gr.Error(f"任务执行失败: {status.get('result', '未知错误')}")
240
  elif status.get("status") == "terminated":
241
  break
242
- last_status_check = current_time
243
 
244
  # 从OSS获取文件列表
245
  try:
 
223
 
224
  while max_time > 0:
225
  max_time -= 1
226
+ # current_time = time.time()
227
 
228
  # 定期检查后端状态
229
+ # if current_time - last_status_check > status_check_interval:
230
+ if True:
231
  status = get_task_status(task_id)
232
  print(str(request.session_hash), "status: ", status)
233
  if status.get("status") == "completed":
 
240
  raise gr.Error(f"任务执行失败: {status.get('result', '未知错误')}")
241
  elif status.get("status") == "terminated":
242
  break
243
+ # last_status_check = current_time
244
 
245
  # 从OSS获取文件列表
246
  try: