Skip to content

Commit 4d6f01a

Browse files
authored
Merge pull request #34 from semi-technologies/gh-33-Update-Weaviate-test-docker-compose-version
2 parents 3b76e9c + c59edd8 commit 4d6f01a

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

classifications/knn.journey.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ describe("a classification journey", () => {
3232
.catch((e) => fail("it should not have errord: " + e));
3333
});
3434

35-
it("is now running", () => {
35+
it("is now completed", () => {
3636
return client.classifications
3737
.getter()
3838
.withId(id)
3939
.do()
4040
.then((res) => {
41-
expect(res.status).toEqual("running");
41+
expect(res.status).toEqual("completed");
4242
});
4343
});
4444

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3.4'
22
services:
33
weaviate:
4-
image: semitechnologies/weaviate:1.2.1
4+
image: semitechnologies/weaviate:1.6.0
55
restart: on-failure:0
66
ports:
77
- "8080:8080"

schema/journey.test.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ describe("schema", () => {
2525
vectorizer: 'text2vec-contextionary',
2626
vectorIndexConfig: {
2727
cleanupIntervalSeconds: 300,
28+
ef: -1,
2829
maxConnections: 64,
30+
skip: false,
2931
efConstruction: 128,
3032
vectorCacheMaxObjects: 500000
3133
},
@@ -95,7 +97,9 @@ describe("schema", () => {
9597
vectorizer: "text2vec-contextionary",
9698
vectorIndexConfig: {
9799
cleanupIntervalSeconds: 300,
100+
ef: -1,
98101
maxConnections: 64,
102+
skip: false,
99103
efConstruction: 128,
100104
vectorCacheMaxObjects: 500000
101105
},

0 commit comments

Comments
 (0)