Merge search behaviour change, and refactor elasticsearch #28

Merged
floatingghost merged 91 commits from elasticsearch-refactor into develop 2022-06-30 16:55:31 +00:00
3 changed files with 4 additions and 3 deletions
Showing only changes of commit 0769f06bd1 - Show all commits

View file

@ -82,7 +82,8 @@ def run(["index" | args]) do
do: "code",
else: "errorCode"
# Filter out the already indexed documents. This is true when the document does not exist
# Filter out the already indexed documents.
# This is true when the document does not exist
result[error_code_key] == "document_not_found"
else
true

View file

@ -7,7 +7,7 @@ defmodule Pleroma.Search.Meilisearch do
import Pleroma.Activity.Search
import Ecto.Query
defp meili_headers() do
defp meili_headers do
private_key = Pleroma.Config.get([Pleroma.Search.Meilisearch, :private_key])
[{"Content-Type", "application/json"}] ++

View file

@ -11,8 +11,8 @@ defmodule Pleroma.Search.MeilisearchTest do
import Tesla.Mock
import Mock
alias Pleroma.Web.CommonAPI
alias Pleroma.Search.Meilisearch
alias Pleroma.Web.CommonAPI
setup_all do
Tesla.Mock.mock_global(fn env -> apply(HttpRequestMock, :request, [env]) end)