Skip to content

Commit e8bdd8d

Browse files
committed
fix gateway thing
Signed-off-by: Milind Waykole <mwaykole@redhat.com>
1 parent 76624a8 commit e8bdd8d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/model_serving/model_server/llmd/conftest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ def llmd_gateway(
6969
) -> Generator[Gateway, None, None]:
7070
"""
7171
Pytest fixture for LLMD Gateway management using create_llmd_gateway.
72-
72+
7373
Implements persistent LLMD gateway strategy:
74-
- Reuses existing gateways if available
74+
- Reuses existing gateways if available
7575
- Creates new gateway only if needed
7676
- Does not delete gateway in teardown
7777
- Uses LLMD-specific gateway configuration
@@ -82,7 +82,7 @@ def llmd_gateway(
8282
else:
8383
gateway_class_name = request.param.get("gateway_class_name", "openshift-default")
8484
kwargs = {k: v for k, v in request.param.items() if k != "gateway_class_name"}
85-
85+
8686
with create_llmd_gateway(
8787
client=admin_client,
8888
namespace=gateway_namespace,

utilities/llmd_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def create_llmd_gateway(
4343
) -> Generator[Gateway, None, None]:
4444
"""
4545
Context manager to create and manage LLMD Gateway resources using ocp_resources.
46-
46+
4747
This function implements smart LLMD gateway management:
4848
- Only creates gateway if it doesn't already exist
4949
- Reuses existing gateways to avoid conflicts

0 commit comments

Comments
 (0)