Skip to content

Commit 1d87b3c

Browse files
committed
common
1 parent 7144ef4 commit 1d87b3c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lambdas/batch_processor_filter/src/batch_processor_filter_service.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
from batch_file_repository import BatchFileRepository
1010
from constants import QUEUE_URL, REGION_NAME, FileNotProcessedReason, FileStatus
1111
from exceptions import EventAlreadyProcessingForSupplierAndVaccTypeError
12-
from logger import logger
13-
from send_log_to_firehose import send_log_to_firehose
12+
from common.clients import logger
13+
from common.log_firehose import send_log_to_firehose
1414

1515
BATCH_AUDIT_REPOSITORY = BatchAuditRepository()
1616
BATCH_FILE_REPOSITORY = BatchFileRepository()

lambdas/batch_processor_filter/src/exception_decorator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from typing import Callable
55

66
from exceptions import EventAlreadyProcessingForSupplierAndVaccTypeError
7-
from logger import logger
7+
from common.clients import logger
88

99

1010
def exception_decorator(func: Callable):

0 commit comments

Comments
 (0)