mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-01-28 06:06:34 +08:00
Fix:Redis configuration template error in v0.22.1 (#12685)
### What problem does this PR solve? https://github.com/infiniflow/ragflow/issues/12674 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
@ -167,7 +167,6 @@ jobs:
|
||||
EXPOSE_MYSQL_PORT=$((5455 + RUNNER_NUM * 10))
|
||||
MINIO_PORT=$((9000 + RUNNER_NUM * 10))
|
||||
MINIO_CONSOLE_PORT=$((9001 + RUNNER_NUM * 10))
|
||||
REDIS_PORT=$((6379 + RUNNER_NUM * 10))
|
||||
TEI_PORT=$((6380 + RUNNER_NUM * 10))
|
||||
KIBANA_PORT=$((6601 + RUNNER_NUM * 10))
|
||||
SVR_HTTP_PORT=$((9380 + RUNNER_NUM * 10))
|
||||
@ -187,7 +186,6 @@ jobs:
|
||||
echo -e "EXPOSE_MYSQL_PORT=${EXPOSE_MYSQL_PORT}" >> docker/.env
|
||||
echo -e "MINIO_PORT=${MINIO_PORT}" >> docker/.env
|
||||
echo -e "MINIO_CONSOLE_PORT=${MINIO_CONSOLE_PORT}" >> docker/.env
|
||||
echo -e "REDIS_PORT=${REDIS_PORT}" >> docker/.env
|
||||
echo -e "TEI_PORT=${TEI_PORT}" >> docker/.env
|
||||
echo -e "KIBANA_PORT=${KIBANA_PORT}" >> docker/.env
|
||||
echo -e "SVR_HTTP_PORT=${SVR_HTTP_PORT}" >> docker/.env
|
||||
|
||||
@ -43,7 +43,8 @@ redis:
|
||||
db: 1
|
||||
username: ''
|
||||
password: 'infini_rag_flow'
|
||||
host: 'localhost:6379'
|
||||
host: 'localhost'
|
||||
port: 6379
|
||||
task_executor:
|
||||
message_queue_type: 'redis'
|
||||
user_default_llm:
|
||||
|
||||
@ -51,7 +51,8 @@ redis:
|
||||
db: 1
|
||||
username: '${REDIS_USERNAME:-}'
|
||||
password: '${REDIS_PASSWORD:-infini_rag_flow}'
|
||||
host: '${REDIS_HOST:-redis}:6379'
|
||||
host: '${REDIS_HOST:-redis}'
|
||||
port: '${REDIS_PORT:-6379}'
|
||||
user_default_llm:
|
||||
default_models:
|
||||
embedding_model:
|
||||
|
||||
@ -125,8 +125,8 @@ class RedisDB:
|
||||
def __open__(self):
|
||||
try:
|
||||
conn_params = {
|
||||
"host": self.config["host"].split(":")[0],
|
||||
"port": int(self.config.get("host", ":6379").split(":")[1]),
|
||||
"host": self.config["host"],
|
||||
"port": int(self.config.get("port", 6379)),
|
||||
"db": int(self.config.get("db", 1)),
|
||||
"decode_responses": True,
|
||||
}
|
||||
|
||||
@ -162,7 +162,7 @@ class TestTableParserDatasetChat:
|
||||
[
|
||||
("show me column of product", r"\|product\|Source"),
|
||||
("which product has price 79", r"Keyboard"),
|
||||
("How many rows in the dataset?", r"count\(\*\)"),
|
||||
("How many rows in the dataset?", r"rows|count\(\*\)"),
|
||||
("Show me all employees in Engineering department", r"(Alice|Carol|Frank)"),
|
||||
],
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user