Skip to content

Commit

Permalink
fix: 🔒 opt out of meilisearch analytics
Browse files Browse the repository at this point in the history
  • Loading branch information
sestinj committed Jul 27, 2023
1 parent cd42eb3 commit 8db5b39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion continuedev/src/continuedev/server/meilisearch_server.py
Expand Up @@ -83,5 +83,5 @@ async def start_meilisearch():
# Check if MeiliSearch is running
if not await check_meilisearch_running() or not was_already_installed:
print("Starting MeiliSearch...")
subprocess.Popen(["./meilisearch"], cwd=serverPath, stdout=subprocess.DEVNULL,
subprocess.Popen(["./meilisearch", "--no-analytics"], cwd=serverPath, stdout=subprocess.DEVNULL,
stderr=subprocess.STDOUT, close_fds=True, start_new_session=True)

0 comments on commit 8db5b39

Please sign in to comment.