処理の安定化のために待機時間を追加し、エンドポイントテストを強化。テストケースを整理し、実行系のエンドポイントテストを新たに追加。

This commit is contained in:
misyaguziya
2025-09-23 23:19:35 +09:00
parent d9f1dabecb
commit 95cf247e2e
2 changed files with 169 additions and 107 deletions

View File

@@ -386,6 +386,7 @@ class Main:
response = handler["variable"](data)
status = response.get("status", None)
result = response.get("result", None)
time.sleep(0.2) # 処理の安定化のために少し待機
except Exception as e:
errorLogging()
result = str(e)