Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KuilongCui committed Sep 14, 2024
1 parent d4f25b2 commit a5a6a1f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions llumnix/backends/vllm/llm_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

import os
import time
import traceback
from typing import Any, List, Optional, Dict, Union, Iterable, Tuple
from collections import defaultdict
import threading
Expand Down Expand Up @@ -244,6 +245,7 @@ def _start_engine_loop(self) -> None:
# pylint: disable=broad-except
except Exception as e:
logger.error("Error in engine loop: {}".format(e))
logger.error("exception traceback: {}".format(traceback.format_exc()))
# pylint: disable=protected-access
os._exit(1)

Expand Down

0 comments on commit a5a6a1f

Please sign in to comment.