Reworking the process of acquiring test results for a specific test case

Analyzing results with 'failed,' 'blocked,' and 'retest' statuses and notifying when their count is more than 3
Analyzing test results with both 'blocked' and 'failed' statuses
Enabling simple caching for specific requests to the TestRail API

PRODX-36715

Change-Id: I629e5effefdb0f854c58021d56763ece773f6ea3
diff --git a/testrail_bot/control/views.py b/testrail_bot/control/views.py
index ba5434b..2c9f0b2 100644
--- a/testrail_bot/control/views.py
+++ b/testrail_bot/control/views.py
@@ -86,7 +86,7 @@
         report_name=report_name,
         path=path)
     report.save()
-    process_run.delay(run_id, report.id, path, run_date)
+    process_run.delay(run_id, report.id, path)
 
     return redirect("single_report", report.id)