Skip to content

Commit 9b1588b

Browse files
densumeshcdxker
authored andcommitted
bugfix: make sure that empty queries dont get run
1 parent e0d245f commit 9b1588b

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ services:
3535
command: redis-server --requirepass ${REDIS_PASSWORD}
3636

3737
qdrant-database:
38-
image: qdrant/qdrant:v1.10.1
38+
image: qdrant/qdrant:v1.11.0
3939
environment:
4040
- QDRANT__SERVICE__API_KEY=${QDRANT_API_KEY}
4141
ports:
@@ -93,7 +93,7 @@ services:
9393
test:
9494
[
9595
"CMD-SHELL",
96-
"wget -qO- -S 'http://tika:9998/version' 2>&1 | grep 'HTTP/' | awk '{print $2}' | grep 200 || exit 1"
96+
"wget -qO- -S 'http://tika:9998/version' 2>&1 | grep 'HTTP/' | awk '{print $2}' | grep 200 || exit 1",
9797
]
9898
interval: 10s
9999
timeout: 5s
@@ -292,7 +292,7 @@ services:
292292
test:
293293
[
294294
"CMD-SHELL",
295-
"exec 3<>/dev/tcp/127.0.0.1/8080;echo -e \"GET /health/ready HTTP/1.1\r\nhost: http://localhost\r\nConnection: close\r\n\r\n\" >&3;grep \"HTTP/1.1 200 OK\" <&3"
295+
"exec 3<>/dev/tcp/127.0.0.1/8080;echo -e \"GET /health/ready HTTP/1.1\r\nhost: http://localhost\r\nConnection: close\r\n\r\n\" >&3;grep \"HTTP/1.1 200 OK\" <&3",
296296
]
297297
interval: 10s
298298
timeout: 5s

server/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ blake3 = "1.5.1"
141141
actix-http = "3.7.0"
142142
clickhouse = { version = "0.12.0", features = ["time", "uuid"] }
143143
prometheus = "0.13.4"
144-
chm = "0.1.9"
144+
chm = "0.1.16"
145145
murmur3 = "0.5.2"
146146
tantivy = "0.22.0"
147147

0 commit comments

Comments
 (0)