refactor(core): Make native Python runner compatible with launcher (#18788)

This commit is contained in:
Iván Ovejero
2025-08-26 13:19:09 +02:00
committed by GitHub
parent 1da5acee30
commit 6cccc4ab9f
10 changed files with 31 additions and 41 deletions

View File

@@ -5,7 +5,7 @@ import sys
os.environ["WEBSOCKETS_MAX_LOG_SIZE"] = "256"
from .constants import (
from src.constants import (
DEFAULT_MAX_CONCURRENCY,
DEFAULT_TASK_TIMEOUT,
ENV_MAX_CONCURRENCY,
@@ -16,8 +16,8 @@ from .constants import (
DEFAULT_MAX_PAYLOAD_SIZE,
ENV_TASK_TIMEOUT,
)
from .logs import setup_logging
from .task_runner import TaskRunner, TaskRunnerOpts
from src.logs import setup_logging
from src.task_runner import TaskRunner, TaskRunnerOpts
async def main():