fix: Correct import path for get_uuid in CheckpointService
- Change from 'api.utils import get_uuid' to 'common.misc_utils import get_uuid' - Fixes ImportError that prevented service from starting - Resolves CI/CD timeout issue
This commit is contained in:
parent
b293dc691d
commit
811e8e0561
1 changed files with 1 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ from datetime import datetime
|
|||
from typing import Optional, Dict, List, Any
|
||||
from api.db.db_models import TaskCheckpoint
|
||||
from api.db.services.common_service import CommonService
|
||||
from api.utils import get_uuid
|
||||
from common.misc_utils import get_uuid
|
||||
|
||||
|
||||
class CheckpointService(CommonService):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue