Skip to content

Commit 368d623

Browse files
author
rmalara
committed
[GH-2609] Fix the thread leak issue in VertexAiTextEmbeddingModel
The PredictionServiceClient was not being closed. Connections are kept open preventing resources from being disposed properly. Signed-off-by: Rodrigo Malara <[email protected]> Signed-off-by: rmalara <[email protected]>
1 parent 9286c23 commit 368d623

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

models/spring-ai-vertex-ai-embedding/src/main/java/org/springframework/ai/vertexai/embedding/text/VertexAiTextEmbeddingModel.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public EmbeddingResponse call(EmbeddingRequest request) {
128128
.observation(this.observationConvention, DEFAULT_OBSERVATION_CONVENTION, () -> observationContext,
129129
this.observationRegistry)
130130
.observe(() -> {
131-
try(PredictionServiceClient client = createPredictionServiceClient()) {
131+
try (PredictionServiceClient client = createPredictionServiceClient()) {
132132

133133
EndpointName endpointName = this.connectionDetails.getEndpointName(finalOptions.getModel());
134134

0 commit comments

Comments
 (0)