neels has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-upf/+/28984 )
Change subject: main: show just a brief talloc report for vty ......................................................................
main: show just a brief talloc report for vty
Upon ^C, do not barf a huge amount of full talloc report for the entire VTY config tree. Show a brief report on VTY instead.
Related: SYS#5599 Change-Id: I038951c6d62679e3cfcda51512768d1fbacaa0d1 --- M src/osmo-upf/osmo_upf_main.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-upf refs/changes/84/28984/1
diff --git a/src/osmo-upf/osmo_upf_main.c b/src/osmo-upf/osmo_upf_main.c index 81102dd..b4888af 100644 --- a/src/osmo-upf/osmo_upf_main.c +++ b/src/osmo-upf/osmo_upf_main.c @@ -377,7 +377,7 @@ talloc_report_full(tall_infra_ctx, stderr); talloc_free(tall_infra_ctx);
- talloc_report_full(tall_vty_ctx, stderr); + talloc_report(tall_vty_ctx, stderr); talloc_free(tall_vty_ctx);
talloc_report_full(NULL, stderr);