From 89980a039cc536bba9583151482432a8b6fe55af Mon Sep 17 00:00:00 2001 From: Sajith Sasidharan Date: Tue, 28 Apr 2020 07:19:47 -0400 Subject: [PATCH] Render total introducers --- src/allmydata/web/root.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/allmydata/web/root.py b/src/allmydata/web/root.py index ca86dcd8f..f29a39204 100644 --- a/src/allmydata/web/root.py +++ b/src/allmydata/web/root.py @@ -384,8 +384,9 @@ class RootElement(Element): else: return tag("%s introducers connected" % (connected_count,)) - def data_total_introducers(self, ctx, data): - return len(self.client.introducer_connection_statuses()) + @renderer + def total_introducers(self, req, tag): + return tag(str(self.client.introducer_connection_statuses())) # In case we configure multiple introducers def data_introducers(self, ctx, data):