Skip to content

Commit c0a341c

Browse files
sunshiningsootzolov
authored andcommitted
Remove slash according to api
1 parent 8210fb1 commit c0a341c

File tree

1 file changed

+1
-1
lines changed
  • vector-stores/spring-ai-chroma/src/main/java/org/springframework/ai/chroma

1 file changed

+1
-1
lines changed

vector-stores/spring-ai-chroma/src/main/java/org/springframework/ai/chroma/ChromaApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ private static class CollectionList extends ArrayList<Collection> {
307307
public List<Collection> listCollections() {
308308

309309
return this.restTemplate
310-
.exchange(this.baseUrl + "/api/v1/collections/", HttpMethod.GET, new HttpEntity<>(httpHeaders()),
310+
.exchange(this.baseUrl + "/api/v1/collections", HttpMethod.GET, new HttpEntity<>(httpHeaders()),
311311
CollectionList.class)
312312
.getBody();
313313
}

0 commit comments

Comments
 (0)