Skip to content

Commit

Permalink
Update chroma DB image patch version
Browse files Browse the repository at this point in the history
  • Loading branch information
cristianrgreco committed Jun 22, 2024
1 parent 995e790 commit 534cc1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/modules/chromadb/src/chromadb-container.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ChromaClient, AdminClient } from "chromadb";
import { ChromaDBContainer } from "./chromadb-container";

describe("ChromaDB", () => {
jest.setTimeout(180_000);
jest.setTimeout(360_000);

// docs {
it("should connect and return a query result", async () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/modules/chromadb/src/chromadb-container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { AbstractStartedContainer, GenericContainer, StartedTestContainer, Wait
const CHROMADB_PORT = 8000;

export class ChromaDBContainer extends GenericContainer {
constructor(image = "chromadb/chroma:0.4.22") {
constructor(image = "chromadb/chroma:0.4.24") {
super(image);
this.withExposedPorts(CHROMADB_PORT)
.withWaitStrategy(Wait.forHttp("/api/v1/heartbeat", CHROMADB_PORT))
Expand Down

0 comments on commit 534cc1b

Please sign in to comment.