Skip to content

Commit

Permalink
FS-3535: adding fix for the assessment processing (#478)
Browse files Browse the repository at this point in the history
merge changes since got approval
  • Loading branch information
nuwan-samarasinghe authored Jun 10, 2024
1 parent 726b149 commit 53060b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import connexion
from _helpers.task_executer_service import TaskExecutorService
from _helpers.task_executer_service import AssessmentTaskExecutorService
from apscheduler.schedulers.background import BackgroundScheduler
from config import Config
from connexion.resolver import MethodViewResolver
Expand Down Expand Up @@ -55,7 +55,7 @@ def create_app() -> Flask:
max_workers=Config.TASK_EXECUTOR_MAX_THREAD, thread_name_prefix="NotifTask", flask_app=flask_app
)
# Configure Task Executor service
task_executor_service = TaskExecutorService(
task_executor_service = AssessmentTaskExecutorService(
flask_app=flask_app,
executor=executor,
s3_bucket=Config.AWS_MSG_BUCKET_NAME,
Expand Down

0 comments on commit 53060b6

Please sign in to comment.