Skip to content

Commit

Permalink
fix failling test
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniofilipovic committed Nov 21, 2023
1 parent 0c55ebf commit 6000810
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions Dockerfile.release
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@ RUN apt-get update && apt-get install -y \

COPY memgraph-${TARGETARCH}.deb .

# Hack to remove modules that cause error on loading of torch modules
# Must be here due to multi-phase build. The setup script is in dev phase
# whereas we unpack memgraph in the base phase
RUN dpkg -i memgraph-${TARGETARCH}.deb && rm memgraph-${TARGETARCH}.deb && rm /usr/lib/memgraph/query_modules/schema.so \
&& rm /usr/lib/memgraph/query_modules/example_cpp.so

RUN ls /usr/lib/memgraph/query_modules/

ENV LD_LIBRARY_PATH /usr/lib/memgraph/query_modules

# Memgraph listens for Bolt Protocol on this port by default.
Expand Down
2 changes: 1 addition & 1 deletion e2e/node_similarity_test/test_list_list_cosine_c/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
query: >
MATCH (m)
WHERE m.id > 2 AND m.id < 5
WHERE m.id > 0 AND m.id < 2
WITH collect(m) as nodes1
MATCH (n)
Expand Down

0 comments on commit 6000810

Please sign in to comment.