We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b127b2 commit 802250aCopy full SHA for 802250a
src/vllm_router/services/request_service/request.py
@@ -141,10 +141,10 @@ async def process_request(
141
await store_in_semantic_cache(
142
endpoint=endpoint, method=request.method, body=body, chunk=cache_chunk
143
)
144
- if background_tasks and hasattr(request.app.state, "callbacks"):
145
- background_tasks.add_task(
146
- request.app.state.callbacks.post_request, request, full_response
147
- )
+ if background_tasks and hasattr(request.app.state, "callbacks"):
+ background_tasks.add_task(
+ request.app.state.callbacks.post_request, request, full_response
+ )
148
149
150
async def route_general_request(
0 commit comments