18: tests, fixes

This commit is contained in:
Dobromir Popov
2025-08-05 14:11:49 +03:00
parent 71442f766c
commit 622d059aae
24 changed files with 1959 additions and 1638 deletions

View File

@ -10,8 +10,12 @@ from datetime import datetime, timezone
from dataclasses import dataclass
from contextlib import contextmanager
from ..utils.logging import get_logger, set_correlation_id
from ..utils.timing import get_current_timestamp
try:
from ..utils.logging import get_logger, set_correlation_id
from ..utils.timing import get_current_timestamp
except ImportError:
from utils.logging import get_logger, set_correlation_id
from utils.timing import get_current_timestamp
# Import will be done lazily to avoid circular imports
logger = get_logger(__name__)