diff --git a/init b/init index 931b9d0e2..7f441c5e1 100755 --- a/init +++ b/init @@ -12,7 +12,8 @@ required_pkgs=(git arcanist # source code control libboost-iostreams-dev libboost-serialization-dev python3 python-virtualenv python3-pip # for qa, macro_benchmark and stress tests - uuid-dev libcurl4-openssl-dev # for telemetry + uuid-dev # mg-utils + libcurl4-openssl-dev # mg-requests sbcl # for custom Lisp C++ preprocessing ) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 0a495230b..e75c8397b 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -2,6 +2,7 @@ # add memgraph sub libraries, ordered by dependency add_subdirectory(utils) +add_subdirectory(requests) add_subdirectory(integrations) add_subdirectory(io) add_subdirectory(telemetry) @@ -189,7 +190,7 @@ set(MEMGRAPH_ALL_LIBS stdc++fs Threads::Threads fmt cppitertools antlr_opencypher_parser_lib dl glog gflags capnp kj ${Boost_IOSTREAMS_LIBRARY_RELEASE} ${Boost_SERIALIZATION_LIBRARY_RELEASE} - mg-utils mg-io mg-integrations mg-communication) + mg-utils mg-io mg-integrations mg-requests mg-communication) if (USE_LTALLOC) list(APPEND MEMGRAPH_ALL_LIBS ltalloc) diff --git a/src/database/graph_db.cpp b/src/database/graph_db.cpp index ddf229b18..bb5dce37f 100644 --- a/src/database/graph_db.cpp +++ b/src/database/graph_db.cpp @@ -56,9 +56,6 @@ class PrivateBase : public GraphDb { Storage &storage() override { return *storage_; } durability::WriteAheadLog &wal() override { return wal_; } - integrations::kafka::Streams &kafka_streams() override { - return kafka_streams_; - } int WorkerId() const override { return config_.worker_id; } // Makes a local snapshot from the visibility of accessor @@ -101,7 +98,6 @@ class PrivateBase : public GraphDb { durability::WriteAheadLog wal_{config_.worker_id, config_.durability_directory, config_.durability_enabled}; - integrations::kafka::Streams kafka_streams_; }; template