[rialto] Increase heap size for riatlo to 256KB
This cl increases the heap size of rialto to 256KB, as the
original 128KB may not be sufficient to handle certain requests,
such as CSR generation.
Test: atest AvfIntegrationTest
Bug: 337406916
Change-Id: Id2d8ab40c60690e4749193d1aa12932acd7d9999
diff --git a/rialto/src/main.rs b/rialto/src/main.rs
index 025edff..11e67cb 100644
--- a/rialto/src/main.rs
+++ b/rialto/src/main.rs
@@ -234,4 +234,4 @@
}
main!(main);
-configure_heap!(SIZE_128KB);
+configure_heap!(SIZE_128KB * 2);