Skip to content

Commit 534cc1b

Browse files
Update chroma DB image patch version
1 parent 995e790 commit 534cc1b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/modules/chromadb/src/chromadb-container.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { ChromaClient, AdminClient } from "chromadb";
22
import { ChromaDBContainer } from "./chromadb-container";
33

44
describe("ChromaDB", () => {
5-
jest.setTimeout(180_000);
5+
jest.setTimeout(360_000);
66

77
// docs {
88
it("should connect and return a query result", async () => {

packages/modules/chromadb/src/chromadb-container.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { AbstractStartedContainer, GenericContainer, StartedTestContainer, Wait
33
const CHROMADB_PORT = 8000;
44

55
export class ChromaDBContainer extends GenericContainer {
6-
constructor(image = "chromadb/chroma:0.4.22") {
6+
constructor(image = "chromadb/chroma:0.4.24") {
77
super(image);
88
this.withExposedPorts(CHROMADB_PORT)
99
.withWaitStrategy(Wait.forHttp("/api/v1/heartbeat", CHROMADB_PORT))

0 commit comments

Comments
 (0)