From fce9cd8c222d65848439af9fb1e19732f4704d18 Mon Sep 17 00:00:00 2001 From: Norman Feske Date: Wed, 26 Feb 2020 09:24:07 +0100 Subject: [PATCH] sculpt manager: use runtime state report max of 1M With complex scenarios, supplementing the node with the attribute 'requested' or 'provides' can easily result in a report of more than 64K. --- repos/gems/src/app/sculpt_manager/main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/gems/src/app/sculpt_manager/main.cc b/repos/gems/src/app/sculpt_manager/main.cc index 5b2ca4494..453d71a91 100644 --- a/repos/gems/src/app/sculpt_manager/main.cc +++ b/repos/gems/src/app/sculpt_manager/main.cc @@ -1662,7 +1662,7 @@ void Sculpt::Main::_generate_runtime_config(Xml_generator &xml) const xml.attribute("child_ram", "yes"); xml.attribute("child_caps", "yes"); xml.attribute("delay_ms", 4*500); - xml.attribute("buffer", "64K"); + xml.attribute("buffer", "1M"); }); xml.node("parent-provides", [&] () {