We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e53cc2b commit 43328d2Copy full SHA for 43328d2
haystack/utils/doc_store.py
@@ -133,7 +133,7 @@ def launch_milvus(sleep=15, delete_existing=False):
133
with open(milvus_dir / "docker-compose.yml", "wb") as f:
134
f.write(request.content)
135
136
- status = subprocess.run(["cd /home/$USER/milvus/ && docker-compose up -d"], shell=True)
+ status = subprocess.run([f"cd {milvus_dir} && docker-compose up -d"], shell=True)
137
138
if status.returncode:
139
logger.warning(
0 commit comments