diff --git a/quickwit/Cargo.toml b/quickwit/Cargo.toml index da746dfd7e1..cda4b6833ae 100644 --- a/quickwit/Cargo.toml +++ b/quickwit/Cargo.toml @@ -23,6 +23,9 @@ members = [ "quickwit-macros", "quickwit-macros/impl", "quickwit-metastore", + + # Disabling metastore-utils from the quickwit projects to ease build/deps. + # We can reenable it when we need it. # "quickwit-metastore-utils", "quickwit-opentelemetry", "quickwit-proto", @@ -58,14 +61,6 @@ default-members = [ "quickwit-macros", "quickwit-macros/impl", "quickwit-metastore", - - # Disabling metastore-utils from the quickwit projects to ease build/deps. - # We can reenable it when we need it. - "quickwit-lambda", - - # Disabling metastore-utils from the quickwit projects to ease build/deps. - # We can reenable it when we need it. - # "quickwit-metastore-utils", "quickwit-opentelemetry", "quickwit-proto", "quickwit-query", diff --git a/quickwit/quickwit-integration-tests/src/lib.rs b/quickwit/quickwit-integration-tests/src/lib.rs index 58a4e7d4ba6..41738324f1a 100644 --- a/quickwit/quickwit-integration-tests/src/lib.rs +++ b/quickwit/quickwit-integration-tests/src/lib.rs @@ -17,6 +17,8 @@ // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see . +#![recursion_limit = "256"] + #[cfg(test)] mod test_utils; #[cfg(test)]